もっとシンプルなものにしよう。
1 2 3 4 5 6 7 8 9 10 11 12 13 14
- | - | | - | ! | - | ! ! !
utility Hoge { static void func() { int a; // R00 int b; // R01 { int c; // R03 } int d; // R02 { int e; // R03 } } };
1 2 3 4 5 6 7 8 9 10 11 12 13
- | | | | | - | | ! !
pod Vector3 { float x; float y; float z; void func(float addValue) { // R00 : this // R01 : addValue } }
1 2 3 4 5 6 7 8
- | - | ! !
utility Hoge { static int GetOne() { return 1; // R00 = 1 } };