// An illustration of object creation.
class ShipMain1 {
public static void main(String[] args){
// Define a method variable to refer to a Ship object.
Ship argo;
// Construct a new Ship object.
argo = new Ship();
}
}
当我去编译它时,它告诉我在Ship argo和argo = new Ship()中都找不到 Ship 的符号;请帮助我是一个非常新的初学者。我也在从一本编程书中复制这个,所以我不知道为什么它不起作用。