• 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: ObjC static member variable
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: ObjC static member variable


  • Subject: RE: ObjC static member variable
  • From: "Rama Krishna" <email@hidden>
  • Date: Thu, 10 Apr 2008 15:36:42 -0400

You can declare a static member variable in the implementation file (.m or
.mm).

static int someSharedVariable;

@implementation

//Use the someSharedVariable in any of the methods

@end

-----Original Message-----
From: cocoa-dev-bounces+vrk.lists=email@hidden
[mailto:cocoa-dev-bounces+vrk.lists=email@hidden] On Behalf Of
vance
Sent: Thursday, April 10, 2008 3:30 PM
To: cocoa-dev
Subject: ObjC static member variable

Does ObjC supports Static Member Variable, and if so, how do you set it?

The getter function gets a compile time error. In C++ we do
MyObject::staticObject to return the static member variable but I am
not sure how is that done in ObjC

Ex:

@interface MyObject : NSObject {
	static BaseObject *staticObject;
}

- (BaseObject *)staticObject
{
	return staticObject;
}

Thank you
_______________________________________________

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

_______________________________________________

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: ObjC static member variable
      • From: vance <email@hidden>
References: 
 >ObjC static member variable (From: vance <email@hidden>)

  • Prev by Date: NSArrayController and managedObjectContext Problem
  • Next by Date: Re: Replacement for GetApplicationEventTarget?
  • Previous by thread: ObjC static member variable
  • Next by thread: Re: ObjC static member variable
  • Index(es):
    • Date
    • Thread