1 Star 1 Fork 0

CS-IMIS-23/20172313yukunpeng

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
Advice.java 828 Bytes
Copy Edit Raw Blame History
package srcNo7;
//**************************************************************************************
// Advice.java Author: Yu Kunpeng
// Represents some thoughtful advice . Used to demonstrate the use
// of an overridden method.
//**************************************************************************************
public class Advice extends Thought {
//----------------------------------------------------------------------------------
// Prints a message. This method overrides the parent's version.
//----------------------------------------------------------------------------------
public void message() {
System.out.println("Warning: Dates in calendar are closer " +
"than they appear.");
System.out.println();
super.message();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/CS-IMIS-23/20172313yukunpeng.git
git@gitee.com:CS-IMIS-23/20172313yukunpeng.git
CS-IMIS-23
20172313yukunpeng
20172313yukunpeng
master

Search