码迷,mamicode.com
首页 > 其他好文 > 详细

面向对象基础(三)

时间:2014-05-19 11:34:37      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   c   java   tar   

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

面向对象基础(三)

标签:des   style   class   c   java   tar   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!