• ベストアンサー

クラスのインスタンスからクラスを知る方法

メソッドの中で引数がテキストボックスなのかボタンなのか判別させてください。 下のc == TextBoxの部分を正しくしてください。 public static void test1(Component c){ if(c == TextBox)System.out.println("テキストボックス"); if(c == Button)System.out.println("ボタン"); } コンポーネントは下のものです。 /com/nttdocomo/ui/Component.html

質問者が選んだベストアンサー

  • ベストアンサー
回答No.1

== ⇒ instanceof

sntbo
質問者

お礼

やってみます。

関連するQ&A