New Reply

Creating instances of a class in Objective C

 
Share Thread Thread Tools
May17-12, 12:37 PM   #1
 

Creating instances of a class in Objective C


I'm relatively new to Objective C. I know I'm using C strings instead of NSStrings, but I'm more comfortable with them. And I know this is probably a bad example of Object-oriented programming, but this is for the sake of example.

Code:
#import <Foundation/Foundation.h>

@interface Greeter : NSObject
{
    char* name;
}
-(void) setname : (char*) newname;
-(char*) getname;
-(void) greet;
-(void) ask;
@end

@implementation Greeter
-(void) setname : (char*) newname
{
    name = newname;
}
-(char*) getname
{
    return name;
}
-(void) greet
{
    printf("Hello, %s!\n",name);
}
-(void) ask
{
    printf("What's your name?\n");
    scanf("%s",name);
}
@end

int main()
{
    @autoreleasepool
    {
        Greeter* me;
        [me ask];
        [me greet];
    }
}
Nothing happens. I'm not completely sure why not, but again, I'm new to Objective C's approach to Object Oriented programming.
PhysOrg.com
PhysOrg
science news on PhysOrg.com

>> Ants and carnivorous plants conspire for mutualistic feeding
>> Forecast for Titan: Wild weather could be ahead
>> Researchers stitch defects into the world's thinnest semiconductor
May17-12, 12:46 PM   #2
 
did you try putting in the args for your main method

int main ( int argc, const char *argv[] )

that may solve your problem especially if the error returned was can't find main method.
May17-12, 01:14 PM   #3
 
No, I didn't get an error message, and int main() is perfectly valid (though some use int argc,const char* argv[] since it's useful for running the program for the command line.) The problem is that when I run it, nothing happens.
May17-12, 01:42 PM   #4
 

Creating instances of a class in Objective C


in many OO languages main() is different from main(...with args...) this is how they distinguish between methods for polymorphism to work ie the methodname+args is the signature that is searched for and called on a match.

okay so put a pritf in the main method before the autorealeasepool stuff and see if it prints out:

printf("Entering main()...");

and

maybe an exiting printf:

printf("Exiting main()...");

this will tell you if main is being called or not and that the autoreleasepool is the issue.
May17-12, 01:51 PM   #5
 
No, the following has worked perfectly:

Code:
#import <Foundation/Foundation.h>

int main()
{
    @autoreleasepool
    {
        printf("Hello world!");
    }
}
May17-12, 02:51 PM   #6
 
ahh okay do you need to get an instance of greeter?

Greeter* me = [[Greeter alloc] init];
May17-12, 03:50 PM   #7
 
Also, I obviously don't know how the scanf function works, since I'm getting an error, so a pointer?
May17-12, 05:24 PM   #8

Math 2012
 
Recognitions:
Science Advisor Science Advisor
I've never used Objective C and I don't understand the details of the syntax, but all your problems seem to have the same cause: you declared some pointers to objects, but you never created any objects.

You defimed "me" as a pointer to a Greeter, but it doesn't actually point to a Greeter object. Simiilarly inside the Greeter, "name" is a pointer to a character, but you haven't allocated any space to hold the characters and set "name" to point to that space. So if you are lucky, "scanf" will fail because "name" isn't pointing to a location it can write characters to. If you are unlucky, it will be pointing to a random place that you CAN write characters to but shouldn't, and you have taken the first small step on the road to writing some malware!

I think you need to get straightened out about a basic rule of C: pointers are not arrays, despite the fact that some of the syntax of C makes it look as if they might be.
May17-12, 05:43 PM   #9
 
Quote by AlephZero View Post
I've never used Objective C and I don't understand the details of the syntax, but all your problems seem to have the same cause: you declared some pointers to objects, but you never created any objects.

You defimed "me" as a pointer to a Greeter, but it doesn't actually point to a Greeter object. Simiilarly inside the Greeter, "name" is a pointer to a character, but you haven't allocated any space to hold the characters and set "name" to point to that space. So if you are lucky, "scanf" will fail because "name" isn't pointing to a location it can write characters to. If you are unlucky, it will be pointing to a random place that you CAN write characters to but shouldn't, and you have taken the first small step on the road to writing some malware!

I think you need to get straightened out about a basic rule of C: pointers are not arrays, despite the fact that some of the syntax of C makes it look as if they might be.
Yea, I need to get my understanding of scanf straightened out. And for some reason, from my experiences, it appears messages are sent to pointers to objects, which I don't understand, but seems to be the case.
May17-12, 07:54 PM   #10
 
yes, in c code for pointers you either malloc memory for it:

char *x = malloc(24); // assigns memory but you will have to copy something to it

strcpy("hello world",x);

or you assign it to a variable:

int y=3;
int *z = &y;

or for arrays:

int xxx[100];
int *pxxx = xxx; // notice no & since xxx is an array; equivalent to --> int *pxxx = &xxx[0];

each time you increment pxxx++ it will internally add 2 bytes to the pointer effectively making the pointer point to the next element of the array.

Good catch AlephZero, I was focusing on the Greeter object and didn't look further. I mostly do Java coding and haven't done much C since maybe 20 years ago.
New Reply
Thread Tools


Similar Threads for: Creating instances of a class in Objective C
Thread Forum Replies
What is Time and its behavior in different instances? General Physics 0
instances of simple harmonic motion? Introductory Physics Homework 1
Does anybody know if there are instances other than diffraction Quantum Physics 3
Memory regarding specific instances. Medical Sciences 7
creating a class Programming & Comp Sci 2