Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

toString Method

  • 15-11-2012 1:13pm
    #1
    Registered Users, Registered Users 2 Posts: 16


    I have this simple toString method in my code:

    public String toString()
    {return "Item ", desc, " has product code ", code, ", and the price is €", price;}

    however, I am getting an error that:

    This method must return a result of type String

    Anybody know what I've done wrong, and more importantly how to rectify it?!


Comments

  • Registered Users, Registered Users 2 Posts: 40 Marko_Polo


    Try:

    public String toString()
    {return "Item " + desc + " has product code " + code, " + and the price is €" + price;}


  • Registered Users, Registered Users 2 Posts: 16 awney


    Legend, thank you :)


  • Closed Accounts Posts: 2,930 ✭✭✭COYW


    Use string.format:
    string.Format("Item {0} has the product code {1}, and the price is {2}.", desc, code, price);


Advertisement