Chapter 7面向对象

Posted 庚xiao午

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Chapter 7面向对象相关的知识,希望对你有一定的参考价值。

技术分享

 1 package com.hanqi;
 2 
 3 //鳥類
 4 public class Bird {  
 5 
 6     //屬性:成員變量
 7     String Colour;//顏色
 8     double Weight;//重量
 9     
10     //行為:方法
11     void fly() //
12     { 
13         System.out.println("我能飛");
14     }
15     void eat() //
16     {
17         System.out.println("我吃蟲子");
18     }     
19     
20     
21     public static void main(String[]args){
22         //生成一隻鳥的實例:老鷹
23         Bird eagle=new Bird();
24         eagle.Colour="灰色";
25         eagle.Weight=10;
26         System.out.println("這是一隻"+eagle.Colour+eagle.Weight+"斤的鳥");
27         
28         eagle.fly();
29         eagle.eat();
30         
31     }
32         
33 
34     }

技术分享

以上是关于Chapter 7面向对象的主要内容,如果未能解决你的问题,请参考以下文章

Chapter 7面向对象---类 (4th,Mar.)

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

Chapter 1:对象导论

面向对象chapter3

Chapter 8. 面向对象(多态--接口)