Objective C makes integer from pointer without a cast passing objects as args - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T20:41:03Zhttp://stackoverflow.com/feeds/question/741878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/741878/objective-c-makes-integer-from-pointer-without-a-cast-passing-objects-as-args0Objective C makes integer from pointer without a cast passing objects as argsCrazyJugglerDrummer2009-04-12T14:41:21Z2009-09-19T22:16:33Z
<p><strong>For more info on fix this error, <a href="http://stackoverflow.com/questions/1448965/objective-c-makes-integer-from-pointer-without-a-cast-how-to-solve">see here</a></strong></p>
<p>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.</p>
<p>Here's the Hand methods involved:</p>
<pre><code>- (id)init : (Deck*) deck
{
[self draw: deck];
[self draw: deck];
return self;
}
- (void)draw: (Deck*)deck;
{
Card* C= [deck drawFromDeck];
[cards addObject: C];
}
</code></pre>
<p>Here's the problematic part of main:</p>
<pre><code>Deck* deck=[[Deck alloc] init];
Hand* hand=[[Hand alloc] init: deck ];
</code></pre>
<p>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)</p>
<p>Thanks guys!! :D</p>
http://stackoverflow.com/questions/741878/objective-c-makes-integer-from-pointer-without-a-cast-passing-objects-as-args/741904#7419040Answer by Abizern for Objective C makes integer from pointer without a cast passing objects as argsAbizern2009-04-12T14:55:38Z2009-04-12T15:16:03Z<p>Did you call <code>[super init]</code> in your Hand's <code>init:</code> method?</p>
<p>Also, you are adding Cards to a cards array; is that being set up correctly?</p>
http://stackoverflow.com/questions/741878/objective-c-makes-integer-from-pointer-without-a-cast-passing-objects-as-args/742011#7420110Answer by Peter Hosey for Objective C makes integer from pointer without a cast passing objects as argsPeter Hosey2009-04-12T16:28:17Z2009-04-12T16:28:17Z<ol>
<li><p>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).</p></li>
<li><p>In your <code>init</code> method(s), don't forget to call <code>[super init]</code>, check that it did not return <code>nil</code>, and initialize the object that it did return. The most common way to do that is:</p>
<pre><code>if ((self = [super init])) {
//Initialize here
}
return self;
</code></pre></li>
<li><p>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.</p></li>
</ol>
http://stackoverflow.com/questions/741878/objective-c-makes-integer-from-pointer-without-a-cast-passing-objects-as-args/742778#7427780Answer by CrazyJugglerDrummer for Objective C makes integer from pointer without a cast passing objects as argsCrazyJugglerDrummer2009-04-13T01:19:35Z2009-04-16T01:13:51Z<p>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:</p>
<p>Card.m</p>
<pre><code>#import "card.h"
@implementation Card
- (id)init : (int)newvalue
{
[super init];
value=newvalue;
return self;
}
-(int)getValue
{
return value;
}
@end
</code></pre>
<p>Hand.m</p>
<pre><code>#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
</code></pre>
<p>Deck.m</p>
<pre><code> #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
</code></pre>
<p>The interfaces for deck and hand have an NSMutableArray* cards and cards has an int value as instance variables.</p>
<p>I still get the warning in the same place in main, and I get a segfault in showCards in hand.m</p>
<p>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!</p>
http://stackoverflow.com/questions/741878/objective-c-makes-integer-from-pointer-without-a-cast-passing-objects-as-args/742813#7428133Answer by Jesse Rusak for Objective C makes integer from pointer without a cast passing objects as argsJesse Rusak2009-04-13T01:41:10Z2009-04-13T11:27:13Z<p>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 <code>- (id)init: (Deck*)deck</code> and <code>- (id)init: (int)newvalue</code>.</p>
<p>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:</p>
<pre><code>Hand *h = [Hand alloc];
h = [h init: deck];
</code></pre>
<p>It would stop giving you a warning. This is very unusual code, though - alloc and init almost always go on the same line.</p>
<p>Since <code>alloc</code> returns an <code>id</code>, and not a <code>Hand</code> it doesn't know that the init call in <code>[[Hand alloc] init:deck]</code> is to a <code>Hand</code>, and not a <code>Card</code>. See <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocStaticBehavior.html#//apple%5Fref/doc/uid/TP30001163-CH16-TPXREF161" rel="nofollow">Apple's Docs on static typing</a> for more information about that.</p>
<p>The easiest (and a reasonable) solution is to rename the methods to indicate the type of the argument. For example, you could use <code>initWithCardValue:</code> and <code>initWithDeck:</code>.</p>
<p>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.)</p>