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

更新时间:2020-06-25

2.1 万+ 浏览

开启您的职业生涯

通过完成课程获得认证

开始学习
广告