SORU
19 Ocak 2010, Salı


Artı ve eksi işaretleri, Objektif olarak yani C gelecek için bir yöntem?

Objective c çok yeni ve böyle büyük mükafat duyuyorum. - işaretleri yöntem tanımı yanında ne anlama geldiğini bilmek istiyorum.

- (void)loadPluginsAtPath:(NSString*)pluginPath errors:(NSArray **)errors;

CEVAP
19 Ocak 2010, Salı


sınıf yöntemi ve - bir örnek yöntemi.

E. g.

// Not actually Apple's code.
@interface NSArray : NSObject {
}
  (NSArray *)array;
- (id)objectAtIndex:(NSUInteger)index;
@end

// somewhere else:

id myArray = [NSArray array];         // see how the message is sent to NSArray?
id obj = [myArray objectAtIndex:4];   // here the message is sent to myArray

// Btw, in production code one uses "NSArray *myArray" instead of only "id".

another question dealing with the difference between class and instance methods var.

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • BMG Rentals Property Management

    BMG Rentals

    23 Mayıs 2011
  • michaeljacksonVEVO

    michaeljacks

    2 EYLÜL 2009
  • TheDailyTechDose

    TheDailyTech

    15 EKİM 2012