OBJECTIVE-C-----Defensive programming

Source: Internet
Author: User

Advantages:

Defensive programming can detect errors early in development.

Example code:

The following is the implementation code for the associated access method.

- (void) Settire: (Tire *) Tire Atindex: (int)Index{if(Index<0||Index>3) {NSLog (@"Bad Index (%d) in Settire:atindex:",Index); Exit (1); } tires[Index] = tire;} -(Tire *) Tireatindex: (int)Index{if(Index<0||Index>3) {NSLog (@"Bad Index (%d) in Tireatindex", Inddex); Exit1); }return(tires[Index]);}

The tire access method uses common code to check the array index of the tires instance variable to ensure that it is a valid value. If the array index exceeds the range of 0 to 3, the program outputs an error message and exits. This code is called defensive programming, which is a good programming idea. Defensive programming can detect errors early in development, such as indexing errors for tires arrays.

OBJECTIVE-C-----Defensive programming

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.