当前位置:  开发笔记 > 编程语言 > 正文

C++体系结构x86_64的未定义符号

如何解决《C++体系结构x86_64的未定义符号》经验,为你挑选了1个好方法。

我是c ++的新手,并试图将文本保存到文本文件中.但是,当我运行程序时,我不断从eclipse中得到这个错误,并且无法弄清楚出了什么问题:

 Undefined symbols for architecture x86_64:
 "StorageSave::execute(std::__1::basic_string, std::__1::allocator >)", referenced from:
 _main in SpendTracker.o

这是我的代码:

StorageSave.h:

#include 
#include 
#include 
#include "Account/Account.h"

#ifndef STORAGE_STORAGESAVE_H_
#define STORAGE_STORAGESAVE_H_

class StorageSave {
public:
    StorageSave();
    virtual ~StorageSave();

    std::string execute(std::string allData);
};

#endif /* STORAGE_STORAGESAVE_H_ */

StorageSave.cpp:

#include 
#include 
#include "StorageSave.h"

StorageSave::StorageSave() {
    // TODO Auto-generated constructor stub

}

StorageSave::~StorageSave() {
    // TODO Auto-generated destructor stub
}

std::string execute(std::string allData) {

    std::ofstream file("hey.txt");
    //std::ofstream *fileptr = &file;

    if(!file.is_open()) {
        std::cout << "Unable to open file." << std::endl;
    } else {
        std::string textData = "test";
        file << textData;
        file.close();
    }

    return "";
}

marom.. 6

我想你应该转

std::string execute(std::string allData) {

std::string StorageSave::execute(std::string allData) {

您正在使用execute作为成员函数并声明它,但实现为自由函数



1> marom..:

我想你应该转

std::string execute(std::string allData) {

std::string StorageSave::execute(std::string allData) {

您正在使用execute作为成员函数并声明它,但实现为自由函数

推荐阅读
有风吹过best
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有