标签: declaration
我们知道将int x = 1;视为初始化,但是如果我们之前初始化int x = y;,x是否考虑了变量y的初始化?例如:
x = 1;
int x = y;
x
y
int y = 1; int x= y;