变量赋值注意点与类型转换注意点

变量赋值
int a,b,c = 10;等价于
int a;
int b;
int c = 10;
类型转换
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_44083591/article/details/88357771