vote up 0 vote down star

For more info on fix this error, see here

I'm trying to make blackjack in objective C, and am having trouble passing objects around. My Hand class basically takes a deck and draws cards from it, adding them to an array.

Here's the Hand methods involved:

- (id)init : (Deck*) deck
{
    [self draw: deck];
    [self draw: deck];
    return self;
}

- (void)draw: (Deck*)deck;
{
    Card* C= [deck drawFromDeck];
    [cards addObject: C];
}

Here's the problematic part of main:

Deck* deck=[[Deck alloc] init];
Hand* hand=[[Hand alloc] init: deck ];

The second line of that gets the "integer from pointer without a cast" error. Whenever I run the code, the hand never has cards in it because there's no deck to draw from (I think :) ). Do I need to pass or parse the Deck* differently? (if you need me to post any more code, just ask)

Thanks guys!! :D

flag

You shouldn't be getting that warning from this code snippet. Can you directly cut & paste your entire main up to and including this point? – Jason Coco Apr 12 at 14:51
Particularly it would be good to see the @interface of Deck and Hand, I think. – Graham Lee Apr 12 at 15:28
I suspect that the init: method has not been declared in the interface. Also, common convention, CrazyJugglerDrummer, is to include the label for the following argument in your method name - e.g.: initWithDeck:(Deck*) deck – Phil Nash Apr 12 at 16:05

4 Answers

vote up 3 vote down check

The problem, based on the extra code you've posted below, is that you have two methods with the same name but whose parameters don't match, namely - (id)init: (Deck*)deck and - (id)init: (int)newvalue.

Normally this isn't a problem, but in this case the types are structurally different - a pointer and an int. The compiler can distinguish which you mean based on the type of the receiver, but this only works when it has its static type. For example, if you had:

Hand *h = [Hand alloc];
h = [h init: deck];

It would stop giving you a warning. This is very unusual code, though - alloc and init almost always go on the same line.

Since alloc returns an id, and not a Hand it doesn't know that the init call in [[Hand alloc] init:deck] is to a Hand, and not a Card. See Apple's Docs on static typing for more information about that.

The easiest (and a reasonable) solution is to rename the methods to indicate the type of the argument. For example, you could use initWithCardValue: and initWithDeck:.

EDIT: Also, yes, heed the suggestions from the other posts about the proper behavior inside the init method. (It's not causing the warning, but it may be causing the segfault.)

link|flag
vote up 0 vote down

Did you call [super init] in your Hand's init: method?

Also, you are adding Cards to a cards array; is that being set up correctly?

link|flag
I looks like he didn't, and while he probably should, that wouldn't give him this error in that location. – Jason Coco Apr 12 at 15:00
vote up 0 vote down
  1. As Phil Nash said in his comment on your question, make sure you have imported the headers for both Hand and Deck into your main file. That should stop the warning (and it was a warning, not an error).

  2. In your init method(s), don't forget to call [super init], check that it did not return nil, and initialize the object that it did return. The most common way to do that is:

    if ((self = [super init])) {
        //Initialize here
    }
    return self;
    
  3. Declaring variables for the arrays isn't enough; you also have to create the arrays and put them in the variables. Only then can you put things into the arrays.

link|flag
vote up 0 vote down

Okay, I tried that, but no luck so far. I still get the warning and a segFault (I'm a noob to objective C, but not to programming :) ). Let me post more code because it seems the errors might be elsewhere:

Card.m

#import "card.h"

@implementation Card

- (id)init : (int)newvalue
{
    [super init];
    value=newvalue;
    return self;
}

-(int)getValue
{
    return value;
}

@end

Hand.m

#import "Hand.h"

@implementation Hand

- (id)init : (Deck*) deck
{
    [super init];
    cards= [[NSMutableArray alloc] init];
    [self draw: deck];
    [self draw: deck];
return self;
}

- (void)draw: (Deck*)deck;
{
    Card* C= [deck drawFromDeck];
    [cards addObject: C];
}

-(int) getTotal
{
    int total;
    for (Card* C in cards)
    {
    	total+=[C getValue];
    }
    return total;
}

-(void)showCards
{
    NSLog(@"Your cards are: ");
    for (NSUInteger x=0; x<[cards count]; x++)
    {
    	NSLog(@"%@ ",[[cards objectAtIndex: x] getValue]);
    }
}

@end

Deck.m

    #import "Deck.h"

@implementation Deck

-(id) init
{
    [super init];
    cards= [[NSMutableArray alloc] init];
    for (short x=0; x<4; x++)
    {
    	for (short y=1; y<14; y++)
    	{
    		[cards addObject: [[Card alloc] init: y]];
    	}
    }
    return self;
}

-(id)drawFromDeck
{
    NSUInteger index = 1+ rand()%[cards count];
    return [cards objectAtIndex:index];
}

@end

The interfaces for deck and hand have an NSMutableArray* cards and cards has an int value as instance variables.

I still get the warning in the same place in main, and I get a segfault in showCards in hand.m

PS I'm also new here. Would it be better for me to ask a new question or post in this one? I also can't get my code to display right when I paste it into the "enter code here" thingy.....thanks guys!

link|flag
The easiest way to format code is to paste in your code, select all of it, then click the "010101010" button. – Jesse Rusak Apr 16 at 1:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.