C++ 作用域解析运算符
作用域解析运算符 ( :: ) 用于多种目的。例如:如果全局变量名与局部变量名相同,则使用作用域解析运算符调用全局变量。它还用于在类的外部定义函数,并用于访问类的静态变量。
以下是在 C++ 语言中使用作用域解析运算符的示例:
示例
#include <iostream> using namespace std; char a = 'm'; static int b = 50; int main() { char a = 's'; cout << "The static variable : "<< ::b; cout << "\nThe local variable : " << a; cout << "\nThe global variable : " << ::a; return 0; }
输出
以下为输出
The static variable : 50 The local variable : s The global variable : m
广告