0
「顯示的消息‘喵喵’叫屏幕當A makeSound()
方法」調用方法和返回
public String makesound() {
return(System.out.println("meow"));
這是正確的嗎?
「顯示的消息‘喵喵’叫屏幕當A makeSound()
方法」調用方法和返回
public String makesound() {
return(System.out.println("meow"));
這是正確的嗎?
該方法應該有一個返回類型void
如果您的目標是簡單地將消息輸出到控制檯,則不需要返回任何內容。
public void makeSound() { //note camel casing of method name
System.out.println("meow");
}
當你嘗試它時會發生什麼? – SingleNegationElimination