首页 > 其他 > 详细

面向对象基础(三)

时间:2014-05-19 11:31:03      阅读:369      评论:0      收藏:0      [点我收藏+]

1. 对象属性的使用方法

2. 多对象的创建方法

3. 匿名对象的创建和使用方法

 

1. 对象属性的使用方法

         使用对象调用变量和函数

         1.  对象.变量

         2.  对象.函数()

         Dog.java

          class Dog{

                 String name ;

                 int age ;

                 String color ;

                 void jump(){

                          System.out.println(‘‘jump‘‘);

                 }

           }

          Test.java

           class Test{

              public static void main(String args []){

                           Dog d =  new Dog();

                           d.name = "旺财" ;

                           d.color = ‘‘黑色‘‘;

                           d.jump() ;

                           System.out.println(“名字是”+d.name);

                  }

           }

          bubuko.com,布布扣

 

 

2. 多对象的创建方法

       bubuko.com,布布扣

             new Dog(); 是在堆内存开辟一块空间, 放置新生成的对象.

             d1和d2是引用新生成的对象, 虽然代码是一样的, 但d1和d2引用的对象是不同的!!!

             class Test{
          public static void main(String args []){
              Dog d1 = new Dog();
              Dog d2 = new Dog();
              d1.name = "旺财";
              d2.name = "四喜";
              d1.jump();
              d2.jump();
              System.out.println("名字是"+d1.name);
              System.out.println("名字是"+d2.name);
          }
     }

             bubuko.com,布布扣

 

3. 匿名对象的创建和使用方法

         new.Dog().jump();    常用一次性的情况

             

 

面向对象基础(三),布布扣,bubuko.com

面向对象基础(三)

原文:http://www.cnblogs.com/iMirror/p/3731605.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!