• 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: What is "A class which must be subclassed" ?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: What is "A class which must be subclassed" ?


  • Subject: Re: What is "A class which must be subclassed" ?
  • From: Andrew Merenbach <email@hidden>
  • Date: Sat, 18 Oct 2008 08:51:31 -0700

On Oct 18, 2008, at 7:43 AM, Jerry Krinock wrote:

I have written a class which is missing important behaviors that must be provided by subclasses. I create one like this:

+ (id)fooWithBar:(Bar*)bar_ {
// A Bar instance knows which subclass of Foo is appropriate for it.
// To find out, send it a -fooClass message.
id instance = [[[bar_ fooClass] alloc] init] ;
return [instance autorelease] ;
}


I'm trying to figure out what to call this. I read in "Cocoa Design Patterns" [1] about Abstract Classes, but my Foo doesn't seem to be quite an Abstract Class, since you could create one if you wanted to.

Is there a design pattern that I should be following for this thing? Or maybe could/should I change it to ^be^ an Abstract Class? Or maybe I should just leave it as is? Whatever it is, it works fine for me.

Thanks,

Jerry

[1] http://developer.apple.com/documentation/Cocoa/Conceptual/CocoaFundamentals/CocoaDesignPatterns/chapter_5_section_1.html#/ /apple_ref/doc/uid/TP40002974-CH6-SW6

Greetings, Jerry,

Might it be appropriate to use a @protocol here?

Cheers,
	Andrew

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________

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

References: 
 >What is "A class which must be subclassed" ? (From: Jerry Krinock <email@hidden>)

  • Prev by Date: What is "A class which must be subclassed" ?
  • Next by Date: Re: What is "A class which must be subclassed" ?
  • Previous by thread: What is "A class which must be subclassed" ?
  • Next by thread: Re: What is "A class which must be subclassed" ?
  • Index(es):
    • Date
    • Thread