美文网首页
Java中的对象

Java中的对象

作者: by小杰 | 来源:发表于2017-02-04 10:14 被阅读12次

    使用对象的步骤:
    1、创建对象
    类名 对象名 = new 类名();
    TestClass phone = new TestClass();
    2、使用对象
    引用对象的属性:对象名.属性
    引用对象的方法:对象名.方法名()

    public class InitailTelephone {
    
        public static void main(String[] args) {
    
            TestClass test = new TestClass();
            test.screen = 100;
            test.cpu = 100;
            test.mem = 8;
            
            test.call();
            test.mesage();
            
        }
    
    }```

    相关文章

      网友评论

          本文标题:Java中的对象

          本文链接:https://www.haomeiwen.com/subject/jvejittx.html