类声明可以包含一个方法。演示此过程的程序如下:
class Message { public void messagePrint() { System.out.println("This is a class with a single method"); } } public class Demo { public static void main(String args[]) { Message m = new Message(); m.messagePrint(); } }
输出结果
This is a class with a single method
现在让我们了解上面的程序。
使用单个成员函数创建Message类messagePrint()
。演示这的代码片段如下-
class Message { public void messagePrint() { System.out.println("This is a class with a single method"); } }
在该main()
方法中,创建了Message类的对象m。然后messagePrint()
调用方法。演示这的代码片段如下-
public class Demo { public static void main(String args[]) { Message m = new Message(); m.messagePrint(); } }