MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / toString

Method toString

strings/InfiniteRecursion.java:12–15  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

10
11public class InfiniteRecursion {
12 @Override public String toString() {
13 return
14 " InfiniteRecursion address: " + this + "\n";
15 }
16 public static void main(String[] args) {
17 Stream.generate(InfiniteRecursion::new)
18 .limit(10)

Callers 7

formatMethod · 0.45
explicitMethod · 0.45
mainMethod · 0.45
mainMethod · 0.45
buildMethod · 0.45
splitMethod · 0.45
string1Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected