在Java中,面向对象编程是一种重要的编程范式,它将现实世界中的事物抽象为对象,并通过封装、继承和多态等特性来描述对象之间的关系。类和对象是面向对象编程的核心概念,下面我们将详细介绍类和对象的相关知识。
public class ClassName {
// 类的属性
// 类的方法
}
其中,类名通常采用大写字母开头的驼峰命名法。
ClassName objectName = new ClassName();
public class Person {
// 类的属性
private String name;
private int age;
// 类的方法
public void setName(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
public void setAge(int age) {
this.age = age;
}
public int getAge() {
return this.age;
}
}
Person person = new Person();
person.setName("Alice");
person.setAge(20);
System.out.println(person.getName());
System.out.println(person.getAge());
public class Person {
private String name;
private int age;
// 无参构造方法
public Person() {
this.name = "unknown";
this.age = 0;
}
// 有参构造方法
public Person(String name, int age) {
this.name = name;
this.age = age;
}
}
以上就是关于Java基础教程-面向对象编程-类与对象的详细介绍,希望对你有所帮助。如果有任何疑问,欢迎继续提问。