在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方法。