[SV] local const protected

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/lbt_dvshare/article/details/102753241

local: only allow access to the class itself, subject to members of the class itself is accessed;

protected: permitted extension class itself and its access;

const: divided into two types: global, instance of

among them,

Global const: namely, assigned at the time of declaration, after can not be modified;

instace of const: Use only be declared const, the assignment occurs in the new () in
 

Guess you like

Origin blog.csdn.net/lbt_dvshare/article/details/102753241