• 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: Returning a nil float?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Returning a nil float?


  • Subject: Re: Returning a nil float?
  • From: Michael Gardner <email@hidden>
  • Date: Mon, 1 Feb 2010 12:17:37 -0600

On Jan 29, 2010, at 6:44 PM, Chunk 1978 wrote:

> i'm almost 100% sure it's not possible to return a nil on basic data
> types, but just incase i'll post the question.
>
> ------------------------------------------------------
> - (float)panForSoundWithName:(NSString *)soundName
> 	{
> 	OpenALSound *sound = [soundDictionary objectForKey:soundName];
> 	if (!sound) return 0.0f;
> 	return sound.pan;
> 	}
> ------------------------------------------------------
>
> so above i'd like to write "if (!sound) return nil;".  my reasoning is
> because some attributes to a sound object (like pan) are created only
> when the sound is initialized.  if there is no sound object than there
> should also be no pan value to return.  unfortunately, the float
> default 0.0f is also the default value for pan (range from -1.0 to
> 1.0).

Another option besides those already mentioned is to use exceptions. Whether they're appropriate depends on whether calling -panForSoundWithName: on non-existent sounds is part of your normal control flow, I guess.

-Michael

_______________________________________________

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: Returning a nil float?
      • From: Jean-Daniel Dupas <email@hidden>
  • Prev by Date: Re: Why can't I use any object as a key in a dictionary?
  • Next by Date: Re: updating NSView on separate thread
  • Previous by thread: Re: How to upload a picture or movie existed in the iphone to a given server?
  • Next by thread: Re: Returning a nil float?
  • Index(es):
    • Date
    • Thread