#java #double #boolean
#java #double #логическое
Вопрос:
Моя программа продолжает получать красные линии смерти для переменной bigNum. Я пытаюсь проверить, находится ли он на границе.
public class ComplexNumber {
private final MyDouble real; // To be initialized in constructors
private final MyDouble imag; // To be initialized in constructors
// constructor initializing
public ComplexNumber(MyDouble realIn, MyDouble imagIn) {
this.real = realIn;
this.imag = imagIn;
}
public ComplexNumber(MyDouble realnumber) {
this.real = realnumber;
this.imag = new MyDouble(0);
}
public MyDouble getReal() {
return real;
}
public MyDouble getImag() {
return imag;
}
// copy constructor
public ComplexNumber(ComplexNumber c) {
this(c.getReal(), c.getImag());
}
// addition of complex numbers
public ComplexNumber add(ComplexNumber a) {
// this.real.add(a.getReal());
return new ComplexNumber(this.real.add(a.getReal()), this.imag.add(a
.getImag()));
}// subtraction of complex numbers
public ComplexNumber subtract(ComplexNumber s) {
return new ComplexNumber(this.real.subtract(s.getReal()), this.imag
.subtract(s.getImag()));
}
// Multiplication of complex numbers
public ComplexNumber multiply(ComplexNumber m) {
MyDouble first = (this.real.multiply(m.getReal()));
MyDouble outside = (m.getReal().multiply(this.imag));
MyDouble inside = (m.getImag().multiply(this.real));
MyDouble last = (this.imag.multiply(m.getImag()));
return (new ComplexNumber(first.subtract(last), (outside.add(inside))));
}
// dividing complex numbers
// double check again but should work
public ComplexNumber divide(ComplexNumber x) {
// MyDouble topReal1 = this.real.multiply(d.getReal());
// MyDouble topReal2 = this.imag.multiply(d.getImag());
// MyDouble topImag1 = this.imag.multiply(d.getReal());
// MyDouble topImag2 = d.getReal().multiply(this.imag);
// MyDouble bottomReal = this.real.multiply(this.real);
// MyDouble bottomImag = d.getImag().multiply(d.getImag());
// MyDouble realSet = topReal1.add(topReal2);
// MyDouble imagSet = topImag1.subtract(topImag2);
// MyDouble top = realSet.add(imagSet);
// MyDouble bottom = bottomReal.add(bottomImag);
//
// return new ComplexNumber(realSet.divide(bottom), imagSet.divide(bottom));
MyDouble demon = x.real.multiply(x.real).add(x.imag.multiply(x.imag));
MyDouble r = real.multiply(x.real).add(imag.multiply(x.imag));
MyDouble i = imag.multiply(x.real).subtract(real.multiply(x.imag));
return new ComplexNumber(r.divide(demon),i.divide(demon));
}
// equals method
public boolean equals(ComplexNumber n) {
return this.real.equals(n.getReal()) amp;amp; this.imag.equals(n.getImag());
}
// compare to method
//public int compareTo(MyDouble x) {
// int imagNum = x.compareTo(this.getImag());
// int realNum = x.compareTo(this.getReal());
// return realNum imagNum;
//if ( this.norm(x.equals(x.))
//}
// string to string method
public String toString() {
// thinking how to get negative values since if else didnt work out too
// well
return getReal() " " getImag() "i";
}
// annoying square root function does not work and api is not as useful
// complex norm method static
public static MyDouble norm(ComplexNumber n) {
MyDouble imag = (n.imag.multiply(n.getImag()));
MyDouble poly = imag.add((n.real.multiply(n.getReal())));
return n.real.multiply(n.real).add(n.imag.multiply(n.imag)).sqrt();
}
// parse method to clear the spaces between the numbers and characters
public static ComplexNumber parse(String s) {
s.replace(" ", "");
String realstring;
String imagstring;
if (s.indexOf(' ') != -1) {
realstring = s.substring(0, s.indexOf(" "));
imagstring = s.substring(s.lastIndexOf(" ") 1, s.indexOf("i"));
} else {
realstring = s.substring(0, s.lastIndexOf("-"));
imagstring = s.substring(s.lastIndexOf("-") - 1, s.indexOf("i"));
}
return new ComplexNumber(new MyDouble(Double.parseDouble(realstring)),
new MyDouble(Double.parseDouble(imagstring)));
}
}
Комментарии:
1. И, не зная, откуда взят ваш
ComplexNumber
класс и чтоgetReal()
иgetImag()
возвращает, будет трудно ответить на ваш вопрос.2. @biziclop, я предполагаю, что OP ссылается на ошибки, отмеченные их IDE.
3. @asgs Ах, так и должно быть. Но обычно они сопровождаются приятным сообщением об ошибке, которое, по крайней мере, является намеком на то, что могло пойти не так. 🙂
Ответ №1:
Если вы наведете курсор на красную строку в вашем коде или красный кружок на левом поле, вы должны увидеть более информативное сообщение об ошибке.
Тем не менее, я могу предположить:
Я не знаю вашего ComplexNumber
класса, но подозреваю, что методы multiply
и add
дают ComplexNumber
результаты, и вы хотите double
. Я бы написал ваш тест по-другому, вот так:
double bigNum = aa.getReal() * aa.getReal() aa.getImag() * aa.getImag();
return (bigNum > Controller.DIVERGENCE_BOUNDARY);
Комментарии:
1. как вы видите, я полный новичок в программировании