iphone - Objective-c -> 结构运算符
<p><div>
<aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
<div class="d-flex fd-column fw-nowrap">
<div class="d-flex fw-nowrap">
<div class="flex--item wmn0 fl1 lh-lg">
<div class="flex--item fl1 lh-lg">
<b>这个问题在这里已经有了答案</b>:
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>Objective-C 中的点语法只是语法糖,它被编译器替换为方法调用。 <code>-></code> 解引用指针并直接访问成员,没有方法调用。</p>
<p>在 Objective-C 方法调用中,你不需要说 <code>self->foo</code>,如果你的类有一个名为 <code>foo</code> 的实例变量,编译器会推断<code>self-></code> 部分。因此,虽然并非完全没有听说过,但将 <code>-></code> 与 Objective-C 对象一起使用是比较少见的。</p></p>
<p style="font-size: 20px;">关于iphone - Objective-c -> 结构运算符,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/18829711/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/18829711/
</a>
</p>
页:
[1]