在Java中,我可以这样写:
myComponent.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent event) {
...
}
});
我可以在Arduino中以某种方式编写一个匿名(“内联”)类吗?
我知道我可以用Arduino达到同样的效果:
// Imagine I have written an interface called ActionListener myself
class MyListener : public ActionListener {
public: void actionPerformed(ActionEvent event) {
...
}
};
myComponent.addActionListener(new MyListener());
但我想知道Arduino是否支持使用匿名内部类。