<?xml version="1.0" encoding="UTF-8" ?>
<settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<servers>
<server>
<id>bintray-yourusername-maven-yourpackagename</id> <!-- same id with the snapshotRepository -->
<username>yourusername</username>
<password>your_api_key</password>
</server>
</servers>
<profiles>
<profile>
<repositories>
<repository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<snapshots>
<enabled>false</enabled>
</snapshots>
<id>central</id>
<name>bintray-plugins</name>
<url>http://jcenter.bintray.com</url>
</pluginRepository>
</pluginRepositories>
<id>bintray</id>
</profile>
</profiles>
<activeProfiles>
<activeProfile>bintray</activeProfile>
</activeProfiles>
</settings>
答案 0 :(得分:0)
在input
中,您正在创建临时对象并将数据读入临时对象。这不会改变main
中的对象。
您需要将c1
和c2
从input
传递给main
。
void input(Complex& c1, Complex& c2) {
c1.real = 0;
c1.imag = 0;
c2.real = 0;
c2.imag = 0;
ifstream fin;
fin.open("mandelinput.txt");
fin >> c1.real >> c1.imag >> c2.real >> c2.imag;
}
在main
中,您有两个类似命名的对象,并为实部和虚部指定值1
。我不清楚c1/c2
中main
与c1/c2
中input
之间的关系是什么。但是,您需要使用两个input
类型的对象来呼叫Complex
。无论他们是c1
还是c2
,还是其他一些尚未创建的对象,我都不知道。