Why a static member function cannot take a const modification

Source: Internet
Author: User

Static member functions cannot be modified with const or access to nonstatic data

The reason that static member functions in C + + cannot be modified with const:

The fifth meaning of static in C + + is that class member functions that do not access non-static data members are not accessed with static adornments. This means that a static member function can only access its parameters, static data members of the class, and global variables.

Cannot use the const reason: a static member function accesses a value whose parameters, static data members, and global variables are not part of the object's state. The use of the keyword const in the member function indicates that the function does not modify the data members of the target object accessed by the function. Since a static member function does not access non-static data members at all, there is no need to use Const.


Why a static member function cannot take a const modification

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.