Processing, extends
用法介紹。
說明
允許一個新類inherit
現有類的方法和數據字段(變量和常量)。在代碼中,聲明新類的名稱,後跟關鍵字extends
和名稱基類.繼承的概念是麵向對象編程的基本原則之一。
請注意,在 Java 和 Processing 中,您不能多次擴展一個類。相反,請參閱 implements
。
例子
DrawDot dd1 = new DrawDot(50, 80);
void setup() {
size(200, 200);
}
void draw() {
dd1.display();
}
class Dot {
int xpos, ypos;
}
class DrawDot extends Dot {
DrawDot(int x, int y) {
xpos = x;
ypos = y;
}
void display() {
ellipse(xpos, ypos, 200, 200);
}
}
有關的
相關用法
- Processing exp()用法及代碼示例
- Processing expand()用法及代碼示例
- Processing exit()用法及代碼示例
- Processing endRaw()用法及代碼示例
- Processing endContour()用法及代碼示例
- Processing endShape()用法及代碼示例
- Processing endCamera()用法及代碼示例
- Processing emissive()用法及代碼示例
- Processing else用法及代碼示例
- Processing ellipseMode()用法及代碼示例
- Processing ellipse()用法及代碼示例
- Processing endRecord()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 extends。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。