面向对象的基本概念

Posted borter

tags:

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

面向对象的基本概念

1,对象

2,类

3,封装

4,继承

5,消息

6,多态性

优点

1,符合人们认识事物的规律

2,改善了程序的可读性

3,使人机交互更加贴近自然语言

 

 1 package Com.TableTest;
 2 
 3 public class TableText_19 {
 4     public static void main(String[] args){
 5     Circle c=new Circle(2,"borter");
 6     System.out.println(c.name);
 7     c.Circle();
 8     }
 9 }
10 class Shape {
11     
12     protected String name;
13      
14     public Shape(){
15         name = "shape";
16     }
17      
18     public Shape(String name) {
19         this.name = name;
20     }
21 }
22 
23  
24 class Circle extends Shape {
25      
26     private double radius;
27      
28     public Circle() {
29         radius = 0;
30     }
31      
32     public Circle(double radius) {
33         this.radius = radius;
34        
35     }
36      
37     public Circle(double radius,String name) {
38         this.radius = radius;
39         this.name = name;
40     }
41     void Circle(){
42          System.out.println(this.radius);
43     }
44 }

 

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

Python -面向对象(一 基本概念)

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

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

PHP-面向对象的三大基本特征和五大基本原则的概念

面向对象(OOP)基本概念

python学习7_1面向对象基本概念和用法