void foobar(){
int local;
static int value;
class access{
void foo(){
local = 5; /* <-- Error here */
value = 10;
}
}bar;
}
void main(){
foobar();
}
local
内部foo()
コンパイルにアクセスしないのはなぜですか? OTOH 静的変数に簡単にアクセスして変更できますvalue
。