¸â¹ö Ŭ·¡½º member class staticÀ¸·Î ¼±¾ðµÇÁö ¾ÊÀº ÁßøµÈ Ŭ·¡½º·Î¼ ³»ºÎ Ŭ·¡½ºÀÌ´Ù. class Top
1
{
int i = 33;
class Nested
{
int k = i;
void foo() { }
}
void bar()
{
Nested n1 = new Nested();
Nested n2 = new Nested();
n1.k = 564 * n1.k;
}
}