尝试使用构造函数类获取名称并获取ID:
Public Student( String newName, String newId)
但它不会编译。我扔了Error: Syntax error on token "(", ; expected
。
/**
* construct class
* @parm String newName
* @parm String newId
*/
public Student( String newName, String newId)
name = newName;
id = newId;
/**
* getName method that return instant varible name
*/
Public String getName()
答案 0 :(得分:6)
公众必须是小写
public Student( String newName, String new Id) {...}
答案 1 :(得分:1)
public
,private
,protected
,static
,class
是小写的关键字。