当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。