问答详情
源自:4-1 Objective-C面向对象之封装上

类方法-(Person*)setName(nssstring*)name: with:(int)age

父类中有-(Person*)setName(nssstring*)name: with:(int)age类方法,

student为子类;

有如下的调用

Student s1=[Person setName:@"刘学生" with:23);

我只想引用Person类中的-(Person*)setName(nssstring*)name: with:(int)age方法,为什么会显示地址错误呢?

提问者:u1 2016-01-10 21:39

个回答

  • 慕移动9181930
    2022-03-26 23:42:16

    是的,它是服务端返回的数据集。F12

  • 努力提升
    2016-01-11 09:55:57

    你这是对象方法,类方法前面用的是+号,对象方法是-号