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 ++で書く最も近い方法は何ですか?
virtualC++ では、定義によってのみメソッドをオーバーライドできます。
virtual
C++11 ではoverrideキーワードが導入され、Java と同じ方法で警告が表示されます。
override
virtual void foo() override;
C++11 より前は、そのような標準メカニズムはありません。