• 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: pointers in objective-c?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: pointers in objective-c?


  • Subject: Re: pointers in objective-c?
  • From: "mm w" <email@hidden>
  • Date: Sat, 2 Aug 2008 09:50:09 -0700

Hi I'm sorry, it's not a confusion, it's only a bad knowledge of C, and
"pointers" are not understood, NS and what about CF or every-prefix in the world
 of frameworks gtk_object ... kobject ...

#include <stdio.h>

long __auto_increment = 0;

typedef struct {
	long *addr;
	void *value;
} Object;

Object ObjectNew(void *value) {
	Object obj;
	long i = __auto_increment++;

	obj.addr = &i;
	obj.value = value;

	return obj;
}

int main (void) {
	Object obj;
	Object *obj_1;
	Object *obj_2;

	char *value = "hello world!";
	obj = ObjectNew(value);

	obj_1 = &obj;
	obj_2 = obj_1;

	printf("obj_1.addr = %x, obj_1.value = %s \n",
		obj_1->addr, obj_1->value);

	printf("obj_2.addr = %x, obj_2.value = %s \n",
		obj_1->addr, obj_1->value);

	return 0;
}

On Sat, Aug 2, 2008 at 12:05 AM, Negm-Awad Amin <email@hidden> wrote:
> Hi,
>
> Am Fr,01.08.2008 um 22:07 schrieb Giulio Cesare Solaroli:
>
>> On Fri, Aug 1, 2008 at 10:01 PM, Clark Cox <email@hidden> wrote:
>>>
>>> On Fri, Aug 1, 2008 at 12:38 PM, Arthur Coleman <email@hidden>
>>> wrote:
>>>>
>>>> I hate to be dense, but what about C structs like NSRect?  There are
>>>> initialized on the stack aren't they?
>>>
>>> They're C structs, they aren't Objective-C objects.
>>
>> That's very true, but the common NS prefix used by both full obj-c
>> classes and simple C structures may lead to some confusion, mainly for
>> someone learning obj-c and Cocoa.
>
> yup, sometimes people are confused about the NS-prefix. But NS means
> NextStep, so refers to the  framework *not* to the type. It is no good idea
> to use hungarian notation in objective-c.
>
> Amin
>
>>
>>
>> Giulio Cesare
>> _______________________________________________
>>
>> 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
>
> Amin Negm-Awad
> 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
>



--
-mmw
_______________________________________________

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: pointers in objective-c?
      • From: "mm w" <email@hidden>
References: 
 >pointers in objective-c? (From: "Wayne Shao" <email@hidden>)
 >Re: pointers in objective-c? (From: Glenn English <email@hidden>)
 >Re: pointers in objective-c? (From: "Clark S. Cox III" <email@hidden>)
 >Re: pointers in objective-c? (From: Arthur Coleman <email@hidden>)
 >Re: pointers in objective-c? (From: "Clark Cox" <email@hidden>)
 >Re: pointers in objective-c? (From: "Giulio Cesare Solaroli" <email@hidden>)
 >Re: pointers in objective-c? (From: Negm-Awad Amin <email@hidden>)

  • Prev by Date: Re: Launch Path Not Accessible
  • Next by Date: Re: Some crash.
  • Previous by thread: Re: pointers in objective-c?
  • Next by thread: Re: pointers in objective-c?
  • Index(es):
    • Date
    • Thread