• 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
@class create a new instance?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

@class create a new instance?


  • Subject: @class create a new instance?
  • From: Rodrigo Zanatta Silva <email@hidden>
  • Date: Mon, 25 Apr 2011 12:02:59 -0300

HI, someone said to me that *@class* directive create a new instance of the
class automatic. I tried to find information about this, but didn't found.

For me, @class is only to solve cyclic includes. There are any side effect
using it? The object variable is the same in this 2 example below, or there
are some difference? The instance *instanceMyClass* will be the same of the
class that send the pointer, right? And I will not lose any memory right?

Example 1
//in sample.h
#include "myClass.h"

myClass *instanceMyClass;

//in sample.m
#include "sample.h"
-(id) initWithMyClass :(myClass *) linkMyClass {
    instanceMyClass = linkMyClass;
}

Example 2
//in sample.h
@class myClass;

myClass *instanceMyClass;

//in sample.m
#include "sample.h"
#include "myClass.h"

-(id) initWithMyClass :(myClass *) linkMyClass {
    instanceMyClass = linkMyClass;
}
_______________________________________________

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: @class create a new instance?
      • From: Kyle Sluder <email@hidden>
  • Prev by Date: Re: BSD TCP Programming on iPad
  • Next by Date: Re: BSD TCP Programming on iPad
  • Previous by thread: Re: NSOpenPanel
  • Next by thread: Re: @class create a new instance?
  • Index(es):
    • Date
    • Thread