Use of foreach and Qlist in QT

Source: Internet
Author: User
Tags foreach
Qlist is one of the most commonly used container classes, and defining an object with it is usually
Qlist <int>list;
where int represents a given type, that is, a symbolic shaping container is now defined, so that the value
list<<2<<3<<4<<6;
You can now use foreach (int i,list) so that you can traverse the entire container.
 
    Qlist <int>list;
    List <<2<<4<<1<<6;
    foreach (int str,list)
        Qdebug () <<str<<endl;

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.