當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Processing super用法及代碼示例


Processing, super用法介紹。

說明

用於引用子類的超類的關鍵字。

例子

// This example is a code fragment;
// it will not compile on its own.

// Create the DragDrop subclass from
// the Button class. Button becomes
// the superclass of DragDrop.
class DragDrop extends Button {
  int xoff, yoff;
  DragDrop(int x, int y) {
    // Runs the superclass' constructor
    super(x, y);
  }
  void press(int mx, int my) {
    // Runs the superclass' press() method
    super.press();  
    xoff = mx;
    yoff = my;  
  }
}

有關的

相關用法


注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 super。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。