• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Question on when toString() method is called

 
Ranch Hand
Posts: 469
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator



The above code prints
Krishna
Inside String method

I umderstand StringBuilder has it's own toString method so it calls that method and prints Krishna . I am trying to find out what triggers calling of toString method. println method calls toString method on the argument that is passed ? I checked API .println method actually calls Strin.valueOf methos on the argument that is passed. Can someone explain and trace how exactly toString method is called ?

Thanks,
Veena
 
Marshal
Posts: 4796
601
VSCode Eclipse IDE TypeScript Redhat MicroProfile Quarkus Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Veena Pointi wrote:Can someone explain and trace how exactly toString method is called ?


According to the documentation for String.valueOf(Object obj), if the argument is null, then a string equal to "null" [is returned]; otherwise, the value of obj.toString() is returned.
 
Veena Pointi
Ranch Hand
Posts: 469
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Oh! I don't know how did I miss to read this ,although I thoroughly read few times. Thank you very much Ron.
reply
    Bookmark Topic Watch Topic
  • New Topic