Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
@interface Foo { Bar *bar[12][8][2]; }
そして、それが何を意味するのか、そしてそれが実際に舞台裏で何をしているのか疑問に思っていますか?
驚くことではありません-これは、sへのポインタの多次元配列ですBar。
Bar
MRCでは、参照カウントは手動で管理されます。
ARCでは、それらはあなたのために管理されます。
バーそれは12要素の配列です。各要素は8つの要素の配列であり、各要素は「Bar」オブジェクトへの2つのポインターの配列です。