Objective-C description method

Source: Internet
Author: User

Description Method of objective-C:
All objects in Java have the string tostring () method inherited from the object, which is used to obtain the string representation of the object,
The method signature for this method in objective-C is:

-(Nsstring *) description;

Because this is a member method in nsobject, we do not have to declare it in the fraction. h file.
Implementation in fraction. m is as follows:

-(Nsstring *) Description

{
Return @ "I Am a fraction! ";
}
Write main function access:

Int main (INT argc, const char * argv [])

{
Fraction * frac = [[fraction alloc] initwithnumerator: 2 anddenominator: 3];
Nslog (@ "% @", frac );
Return 0;
}

Here we can see that the formatted string used for the nslog output object is% @The description method is called..
If we do not implement our own description, we will call the nsobject implementation to output the first address of the object.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.