在Java中,类是一种用于定义对象的蓝图。要定义一个类,需要使用class
关键字,后跟类名。类名应该以大写字母开头,遵循驼峰命名法。类可以包含属性(变量)和方法(函数)。下面是一个简单的Java类定义示例:
public class MyClass {
// 属性(变量)
private String myAttribute;
// 构造方法
public MyClass(String myAttribute) {
this.myAttribute = myAttribute;
}
// 方法(函数)
public void myMethod() {
System.out.println("This is a method in MyClass.");
}
// Getter 和 Setter 方法
public String getMyAttribute() {
return myAttribute;
}
public void setMyAttribute(String myAttribute) {
this.myAttribute = myAttribute;
}
}
在这个示例中,我们定义了一个名为MyClass
的类,它有一个私有属性myAttribute
,一个构造方法,一个普通方法myMethod()
,以及myAttribute
的getter和setter方法。