为什么这个编译?

时间:2012-10-08 23:36:13

标签: java helpers

尝试使用构造函数类获取名称并获取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()

2 个答案:

答案 0 :(得分:6)

公众必须是小写

public Student( String newName, String new Id) {...}

答案 1 :(得分:1)

publicprivateprotectedstaticclass是小写的关键字。