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.
このコード スニペットを実装する一般的な方法を探しています。
if (!(obj instanceof MyClass)) { return false; }
理想的には、次のようなものが欲しいです (したがって、毎回 MyClass をハードコーディングする必要はありません):
if (!(obj instanceof this.getClass())) { return false; }
ただし、この例は機能しません。
あなたができる
this.getClass().isInstance(obj);