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]; }
我想知道这意味着什么以及它在幕后实际上在做什么?
Bar毫不奇怪——它是一个指向s的多维指针数组。
Bar
在 MRC 中,引用计数是手动管理的。
在 ARC 中,它们是为您管理的。
bar 它是一个包含 12 个元素的数组。每个元素是一个包含 8 个元素的数组,每个元素是一个包含 2 个指向“Bar”对象的指针的数组。