Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
new DialogInterface.OnKeyListener() { @Override public boolean onKey(DialogInterface d, int keyCode, KeyEvent event) { return false; } }
以上使用起来非常方便,
用 C++ 编写它的最接近的方法是什么?
在 C++ 中,您只能virtual通过定义覆盖方法。
virtual
C++11 引入了override关键字,它以与 Java 等效项相同的方式提醒您:
override
virtual void foo() override;
在 C++11 之前没有这样的标准机制。