面向对象编程(OOP)是Java编程语言的核心特性之一。以下是Java面向对象编程的一些基础概念和示例:
-
类(Class) 类是对象的蓝图或模板,定义了对象的属性和行为。
public class Person { // 属性 String name; int age; // 构造方法 public Person(String name, int age) { this.name = name; this.age = age; } // 方法 public void introduce() { System.out.println("我叫 " + name + ",今年 " + age + " 岁。"); } }
-
对象(Object) 对象是类的实例,通过
new
关键字创建。public class Main { public static void main(String[] args) { // 创建Person对象 Person person = new Person("张三", 25); // 调用对象的方法 person.introduce(); } }
-
封装(Encapsulation) 封装是将数据(属性)和操作数据的方法绑定在一起,并隐藏对象的内部实现细节。
public class Person { private String name; private int age; public Person(String name, int age) { this.name = name; this.age = age; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public void introduce() { System.out.println("我叫 " + name + ",今年 " + age + " 岁。"); } }
-
继承(Inheritance) 继承是从现有类创建新类的过程,新类继承了现有类的属性和方法。
public class Student extends Person { private String school; public Student(String name, int age, String school) { super(name, age); this.school = school; } public String getSchool() { return school; } public void setSchool(String school) { this.school = school; } @Override public void introduce() { System.out.println("我叫 " + getName() + ",今年 " + getAge() + " 岁,我在 " + school + " 上学。"); } }
-
多态(Polymorphism) 多态是指同一个方法可以根据调用它的对象的不同而有不同的行为。
public class Main { public static void main(String[] args) { Person person1 = new Person("张三", 25); Person person2 = new Student("李四", 20, "清华大学"); person1.introduce(); // 输出: 我叫 张三,今年 25 岁。 person2.introduce(); // 输出: 我叫 李四,今年 20 岁,我在 清华大学 上学。 } }
这些示例展示了Java面向对象编程的基本概念,包括类、对象、封装、继承和多态。
标签:school,java,name,Person,age,基础,面向对象,public,String From: https://blog.csdn.net/weixin_74196912/article/details/140412779