本帖最后由 18611643318 于 2016-6-3 23:03 编辑
new 非static方法的类.非static方法()
- package com.itheima;
- public class Test24 {
- public static void main(String[] args) {
- new Test24().method();
- }
- void method() {
- System.out.println("HelloWorld!!!");
- }
- }
复制代码
不能直接调用,可以间接调用.
|
|