Study Notes--05

Source: Internet
Author: User

Compound literals are used in the structure,

We have a structure:

1 struct Date 2 {3     int Year ; 4     int month; 5     int Day ; 6 };

The general assignment to this structure would be:

1 struct Date today = {7,-}; 2 // or a 3 //  4//     {. Day = $,. Year =,. Month = 7};

And in the form of compound literals:

1 today = (struct date) {7}; 2 // or 3 // today = (struct date) {. Month = 7,. Day = $,. Year = n};

This may seem like no egg, but applying the compound literal to the program will find it convenient:

// General Application // if (today! =) {//      tomorrow.day = today.day + 1; //       tomorrow.month = today.month; //       tomorrow.year = today.year;     // Compound literal usage if  - )    = (struct1, today.year};

The same result, the use of compound literal will be more intuitive and more convenient.

Study Notes--05

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.