鱼C论坛

 找回密码
 立即注册
查看: 2012|回复: 2

无法解析的外部符号

[复制链接]
发表于 2014-4-23 08:29:18 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
看小甲鱼的c++视频,第20,友元部分;自己在vs2012上写demo;运行后输出
ConsoleApplication10.obj : error LNK2019: 无法解析的外部符号 "public: __thiscall Others::Others(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)" (??0Others@@QAE@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z),该符号在函数 _main 中被引用
1>d:\我的资料库\documents\visual studio 2012\Projects\ConsoleApplication10\Debug\ConsoleApplication10.exe : fatal error LNK1120: 1 个无法解析的外部命令


demo代码如下 : 求大家指导;
// ConsoleApplication10.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <string>
#include <iostream>
class Lover {
public :
        Lover(std::string theName);
        void kiss(Lover *lover);

protected:
        std::string name;

        friend class Others;
};
class Boy :public Lover {
public :
        Boy(std::string theName);
};
class Girl:public Lover {
public :
        Girl(std::string theName);
};

class Others {
public :
        Others(std::string theName);
        void kiss(Lover *lover);
protected:
        std::string name;
};
void Others::kiss(Lover *lover){
        std::cout <<name<<"kisss=============="<<lover->name<<std::endl;
}
Lover::Lover(std::string theName){
        name =theName;
}
void Lover::kiss(Lover *lover){
        std::cout <<name <<"kiss ---"<<lover->name<<std::endl;
}
Boy::Boy(std::string theName):Lover(theName){

}
Girl::Girl(std::string theName):Lover(theName){}

int main(int argc, _TCHAR* argv[])
{

        Boy boy ("aaa");
        Girl g("bbbbb");

        Others o("cccc");
        g.kiss(&boy);
        o.kiss(&g);
        system("pause");
        return 0;
}



想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-23 08:53:36 | 显示全部楼层
你没有实现Others的构造函数啊~~:ton:
Others::Others(std::string theName)
{
        name = theName;
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-4-23 23:41:47 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-26 11:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表