Всем добрый день!
Я выполняла задание из урока (Заур Трегулов).
Вроде всё напечатала как в уроке, но у меня программа не запускается. Посмотрите , пожалуйста.
Вот текст программы:
package Lesson5;
public class Human {
String name;
Car3 car;
BankAccount bA;
void info() {
System.out.println("Imya: " + name, "Cvet machini:" + car.color + "Balance: " + bA.balance);
}
}
class HumanTest {
public static void main(String [] args) {
Human h = new Human();
h.name = "David";
h.car = new Car3("red", "V8");
h.bA=new BankAccount(18,200.5);
h.info();
}
}
class Car3 {
Car 3(String c, String e){
color = c;
engine =e;
}
String color;
String engine;
}
class BankAccount {
BankAccount(int id2, double balance2) {
id = id2;
balance=balance2;
}
int id;
double balance;
}
Ошибка компилятора:
Exception in thread “main” java.lang.RuntimeException: Uncompilable source code - Erroneous ctor sym type: Lesson5.Car3.
at Lesson5.HumanTest.main(Human.java:24)
C:\Users\annar\AppData\Local\NetBeans\Cache\12.4\executor-snippets\run.xml:111: The following error occurred while executing this line:
C:\Users\annar\AppData\Local\NetBeans\Cache\12.4\executor-snippets\run.xml:94: Java returned: 1
BUILD FAILED (total time: 1 second)