Error and warning messages in C + + programming (1) cannot have Cv-qualifier

Source: Internet
Author: User
Tags volatile

Explanation

There is no CV qualifier, and in C + + the CV qualifier refers to const and volatile.

Non-member function

In C + +, normal functions (non-class member functions) cannot have CV qualification, that is, const and volatile qualification. That is, the number of member rows that are not classes, decorated with const:

iint

test () const // This is wrong, ordinary functions
{
     // implement
}

static functions

In C + +, a static member function (a static member function) cannot have a CV qualification, that is, a const and a volatile qualification. This is the static member function of the class, and there is no CV constraint:

class Test
{
public:
     static int test_fun () const; // This is not allowed.
} 

Reference

http://blog.163.com/xychenbaihu@yeah/blog/static/132229655201149281131/

Liuda · Poechant:blog.csdn.net/poechant

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.