• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: subclass overwriting superclass ivar
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: subclass overwriting superclass ivar


  • Subject: Re: subclass overwriting superclass ivar
  • From: Graham Cox <email@hidden>
  • Date: Wed, 26 May 2010 22:53:36 +1000

On 26/05/2010, at 10:41 PM, vincent habchi wrote:

> Hmmm... Let's say you have a class A with a private variable "priv" and b a pointer to a subclass of A. Is:
>
> [(A *)b priv]
>
> legal?


No. It's not legal syntax for accessing an ivar in any case - square brackets invoke a method:- [instance method]. Obj-C does not have the concept of private/public/protected methods, unlike C++.

Perhaps you could ask is:

(A*)b->priv legal?

Depends. If priv is @private it is invisible to code other than within the methods of class A itself, so if this code lived inside such a method it would work, otherwise it would not. I don't think the cast makes any difference.

But this is not getting to the problem that the OP is having, which AFAICS is unrelated to @private. @private is a Good Thing™ - often worth using.

--Graham


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: subclass overwriting superclass ivar
      • From: vincent habchi <email@hidden>
    • Re: subclass overwriting superclass ivar
      • From: Jean-Daniel Dupas <email@hidden>
References: 
 >subclass overwriting superclass ivar (From: "email@hidden" <email@hidden>)
 >Re: subclass overwriting superclass ivar (From: vincent habchi <email@hidden>)
 >Re: subclass overwriting superclass ivar (From: Graham Cox <email@hidden>)
 >Re: subclass overwriting superclass ivar (From: vincent habchi <email@hidden>)

  • Prev by Date: Re: subclass overwriting superclass ivar
  • Next by Date: Re: subclass overwriting superclass ivar
  • Previous by thread: Re: subclass overwriting superclass ivar
  • Next by thread: Re: subclass overwriting superclass ivar
  • Index(es):
    • Date
    • Thread