c++中 : 符号的意思
时间: 2023-05-18 18:03:04 浏览: 95
有符号型符号扩展-20天精通C++编程
在 C 语言中,冒号符号通常用于标记一个标签,用于在 switch 语句或 goto 语句中跳转到该标签所在的位置。例如:
```
switch (x) {
case 1:
printf("x is 1\n");
break;
case 2:
printf("x is 2\n");
break;
default:
printf("x is neither 1 nor 2\n");
break;
}
goto my_label;
// ...
my_label:
printf("Hello, world!\n");
```
在上面的代码中,冒号符号用于标记 case 语句和标签 my_label。
阅读全文