首页 > ubuntu环境使用gcc编译objective-c多个文件出现问题如何解决?

ubuntu环境使用gcc编译objective-c多个文件出现问题如何解决?

问题描述

今天在学习过程中写了两个类,编译过程中出现

Making all for tool Programe...
Compiling file Programe.m ...
Linking tool Programe ...
./obj/Programe.obj/Programe.m.o:(.data.rel+0x20):对‘__objc_class_name_Tire’未定义的引用
./obj/Programe.obj/Programe.m.o:(.data.rel+0x28):对‘__objc_class_name_Engine’未定义的引用
collect2: error: ld returned 1 exit status
make[3]: * [obj/Programe] 错误 1
make[2]: * [internal-tool-all_] 错误 2
make[1]: * [Programe.all.tool.variables] 错误 2
make: * [internal-all] 错误 2

这种错误,不知道如何解决。

文件代码如下

Tire.h
#import <Cocoa/Cocoa.h>
@interface Tire : NSObject
@end // Tire
Tire.m
#import "Tire.h"
@implementation Tire
-- (NSString *) description
{
    return (@"I am a tire. I last a while");
} // description
@end // Tire
Engine.h
#import <Cocoa/Cocoa.h>
@interface Engine : NSObject
@end // Engine
Engine.m
#import "Engine.h"
@implementation Engine
-- (NSString *) description
{
 return (@"I am an engine. Vrooom!");
} // description
@end // Engine
Programe.m
#import <Foundation/Foundation.h>
#import "Tire.h"
#import "Engine.h"

@interface AllWeatherRadial : Tire
@end // AllWeatherRadial
@implementation AllWeatherRadial
-- (NSString *) description
{
    return (@"I an a tire for rain or shine");
} // description
@end // AllWeatherRadial

@interface Slant6 : Engine
@end // Slant6
@implementation Slant6
-- (NSString *) description
{
    return (@"I an a slant-6. VROOOM!");
} // description
@end // Slant6

@interface Car : NSObject
{
    Engine *engine;
    Tire *tires[4];
}
-- (Engine *) engine;
-- (void) setEngine: (Engine *) newEngine;
-- (Tire *) tireAtIndex: (int) index;
-- (void) setTire: (Tire *) tire
     atIndex: (int) index;
-- (void) print;
@end // Car
@implementation Car
-- (id) init
{
    if ((self = [super init]))
    {
        engine = [Engine new];
        tires[0] = [Tire new];
        tires[1] = [Tire new];
        tires[2] = [Tire new];
        tires[3] = [Tire new];
    }
    return (self);
} // init
-- (Engine *) engine
{
    return (engine);
}
-- (void) setEngine: (Engine *) newEngine
{
    engine = newEngine;
}
-- (void) setTire: (Tire *) tire
     atIndex: (int) index
{
    if (index < 0 || index > 3) {
        NSLog (@"bad index (%d) in setTire:atIndex:",index);
        exit (1);
    }
    tires[index] = tire;
}
-- (Tire *) tireAtIndex: (int) index
{
    if (index < 0 || index <3) {
        NSLog (@"bad index (%d) in tireAtIndex:",index);
        exit (1);
    }
    return (tires[index]);
}
-- (void) print
{
    NSLog (@"%@", engine);
    NSLog (@"%@", tires[0]);
    NSLog (@"%@", tires[1]);
    NSLog (@"%@", tires[2]);
    NSLog (@"%@", tires[3]);
} // print
@end // Car

int main (int argc, const char * argv[])
{
    Car *car = [Car new];
    Engine *engine = [Slant6 new];
    [car setEngine: engine];
    int i;
    for (i = 0; i < 4; i++){
        Tire *tire = [AllWeatherRadial new];
        [car setTire: tire
             atIndex: i];
    }
    [car print];
    getchar();
    return (0);
} // main

代码中关于“--”都是连续两个的原因是markdown转移字符\在这里并不生效,实际代码中“-”的符号只有一个。

各位帮忙看下这个问题应该如何解决?

【热门文章】
【热门文章】