author.java
来自「beginJsp2.0外文书籍源代码」· Java 代码 · 共 36 行
JAVA
36 行
package books;
public class Author
{
private String lastName;
private String firstName;
private String otherNames;
public void setName(String firstName,
String lastName,
String otherNames)
{
this.lastName = lastName;
this.firstName = firstName;
this.otherNames = otherNames;
}
public void setName (String lastName, String firstName)
{
// rather than duplicating functionality of the overloaded method like so:
// this.lastName = lastName;
// this.firstName = firstName;
// this.otherNames = "";
// it is preferable to call the overloaded method like this:
this.setName (lastName, firstName, "");
}
public String getName()
{
return firstName + " " + otherNames + " " + lastName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?