MCPcopy Create free account
hub / github.com/SquirrelJME/SquirrelJME / toString

Method toString

runt/apis/cldc-compact/java/lang/Object.java:155–159  ·  view source on GitHub ↗

Returns the string representation of this object. The default implementation is classname@hashcode. @return The string representation of this object. @since 2016/02/09

()

Source from the content-addressed store, hash-verified

153 * @since 2016/02/09
154 */
155 public String toString()
156 {
157 return this.getClass().getName() + "@" +
158 Integer.toString(this.hashCode(), 16);
159 }
160
161 /**
162 * Causes the current thread to wait on this object's monitor until

Callers

nothing calls this directly

Calls 4

getClassMethod · 0.95
toStringMethod · 0.95
hashCodeMethod · 0.95
getNameMethod · 0.65

Tested by

no test coverage detected