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.
私はこれを私のアプリに書いています
LastFmServer server = AndroidLastFmServerFactory.getServer(); Artist[] results; results = server.searchForArtist("Hatebreed"); Log.e("", results[2].toString());
このコードでこれが logcat に表示されるのはなぜですか?
fm.last.api.Artist@2bf03488
そのクラスは独自の toString を実装していないため、継承されたものを呼び出すjava.lang.Objectことになり、クラス名とそのハッシュが得られます。
java.lang.Object