- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个 C++ 项目并且之前从未真正使用过头文件,我正在尝试构建我的项目但是它抛出了几个链接器错误,我不知道它们是什么或如何修复它们!
报错如下:
Error 4 error LNK1120: 3 unresolved externals C:\Users\Stephen\Downloads\08227_ACW2_TestHarness_12-13\08227_ACW2_TestHarness_12-13\Debug\08227_ACW.exe 1 1 08227_ACW
Error 3 error LNK2019: unresolved external symbol "
public: bool __thiscall ArrayStorage::exists(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)
" (?exists@ArrayStorage@@QAE_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function _main C:\Users\Stephen\Downloads\08227_ACW2_TestHarness_12-13\08227_ACW2_TestHarness_12-13\main.obj 08227_ACWError 2 error LNK2019: unresolved external symbol "
public: bool __thiscall ArrayStorage::stdExists(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)
" (?stdExists@ArrayStorage@@QAE_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function _main C:\Users\Stephen\Downloads\08227_ACW2_TestHarness_12-13\08227_ACW2_TestHarness_12-13\main.obj 08227_ACWError 1 error LNK2019: unresolved external symbol "
public: bool __thiscall LinkedListStorage::exists(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >)
" (?exists@LinkedListStorage@@QAE_NV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function _main C:\Users\Stephen\Downloads\08227_ACW2_TestHarness_12-13\08227_ACW2_TestHarness_12-13\main.obj 08227_ACW
从周围阅读它们是某种链接器错误,但我完全不知道实际问题是什么。我什至不知道把我的代码放上去是否有帮助,如果需要的话,有人可以告诉我,我会把它放上去。
提前致谢!
编辑:
头文件:
数组存储.h
#ifndef mao
#define mao
#include <fstream>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
class ArrayStorage
{
private:
string* storageArray;
int aSize;
public:
void read(ifstream& iFile);
void write(ofstream& oFile);
bool exists(string target);
bool stdExists(string target);
friend ofstream& operator<<(ofstream& OS, ArrayStorage& SA);
friend ifstream& operator>>(ifstream& IS, ArrayStorage& SA);
};
#endif
链表存储.h
#ifndef lao
#define lao
#include <fstream>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
class LinkedListStorage
{
private:
void addnode(string line);
void sort();
typedef struct node;
public:
node *root;
int size;
void read(ifstream& iFile);
void write(ofstream& oFile);
bool exists(string target);
friend ofstream& operator<<(ofstream& OS,LinkedListStorage& LLS);
friend ifstream& operator>>(ifstream& IS, LinkedListStorage& LLS);
};
#endif
主.ccp
#include <fstream>
#include <iostream>
using namespace std;
// *****************************
// you need to create these classes
// *****************************
#include "ArrayStorage.h"
#include "LinkedListStorage.h"
int main(int argc, char **argv) {
string find = "pixel";
// ######################################################
// #################### ArrayStorage ####################
// ######################################################
// ***********************************
// sort read & exists
// ***********************************
ifstream fin1("ACW2_data.txt");
ofstream out1("1-In-SortedRead.txt");
if(!fin1.is_open())
{
cout << "FAIL" << endl;
return 1;
}
ArrayStorage arrayStorage1;
// read in values into data structure
arrayStorage1.read(fin1);
// output values in data structure to file
arrayStorage1.write(out1);
fin1.close();
out1.close();
// find an item in the data structure using own search method
if(arrayStorage1.exists(find)) {
cout << find.c_str() << " found exists()" << endl;
} else {
cout << find.c_str() << " not found exists()" << endl;
}
// find an item in the data structure using std::count method
if(arrayStorage1.stdExists(find)) {
cout << find.c_str() << " found stdExists()" << endl;
} else {
cout << find.c_str() << " not found stdExists()" << endl;
}
// *********************************
// sort read & then copy constructor
// *********************************
ifstream fin2("ACW2_data.txt");
ofstream out2("2-Out-CopyConstructor.txt");
if(!fin2.is_open())
{
cout << "FAIL" << endl;
return 1;
}
ArrayStorage arrayStorage2;
// read in values into data structure
arrayStorage2.read(fin2);
ArrayStorage arrayStorage3 = arrayStorage2;
// output values in data structure to a file
arrayStorage3.write(out2);
fin2.close();
out2.close();
// *************************************
// >> read & then << write
// *************************************
ifstream fin3("ACW2_data.txt");
ofstream out3("3-In-OperatorRead.txt");
ofstream out4("4-Out-OperatorWrite.txt");
if(!fin3.is_open())
{
cout << "FAIL" << endl;
return 1;
}
ArrayStorage arrayStorage4;
fin3 >> arrayStorage4;
arrayStorage4.write(out3);
out4 << arrayStorage4;
fin3.close();
out3.close();
out4.close();
// ###########################################################
// #################### LinkedListStorage ####################
// ###########################################################
// ***********************************
// sort read & exists
// ***********************************
ifstream fin4("ACW2_data.txt");
ofstream out5("5-In-SortedRead.txt");
if(!fin4.is_open())
{
cout << "FAIL" << endl;
return 1;
}
LinkedListStorage llStorage1;
// read in values into data structure
llStorage1.read(fin4);
// output values in data structure to file
llStorage1.write(out5);
fin4.close();
out5.close();
// find an item in the data structure using own search method
if(llStorage1.exists(find)) {
cout << find.c_str() << " found exists()" << endl;
} else {
cout << find.c_str() << " not found exists()" << endl;
}
// *********************************
// sort read & then copy constructor
// *********************************
ifstream fin5("ACW2_data.txt");
ofstream out6("6-Out-CopyConstructor.txt");
if(!fin5.is_open())
{
cout << "FAIL" << endl;
return 1;
}
LinkedListStorage llStorage2;
// read in values into data structure
llStorage2.read(fin5);
LinkedListStorage llStorage3 = llStorage2;
// output values in data structure to a file
llStorage3.write(out6);
fin5.close();
out6.close();
// *************************************
// >> read & then << write
// *************************************
ifstream fin6("ACW2_data.txt");
ofstream out7("7-In-OperatorRead.txt");
ofstream out8("8-Out-OperatorWrite.txt");
if(!fin6.is_open())
{
cout << "FAIL" << endl;
return 1;
}
LinkedListStorage llStorage4;
fin6 >> llStorage4;
llStorage4.write(out7);
out8 << llStorage4;
fin6.close();
out7.close();
out8.close();
cout << endl << "Finished" << endl;
int keypress; cin >> keypress;
return 0;
}
链表存储.ccp
#include <fstream>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
class LinkedListStorage
{
private:
//methods
//variables
typedef struct node
{
string word;// data
node *next; //address of next node
};
node *root; //root node
int size; //size of datafile
public:
//methods
void addnode(string line)
{
node *temp, *temp2;
temp = new node;
temp->word = line;
temp->next = NULL;
if(root == NULL)
root = temp;
else
{
temp2 = root;
while(temp2->next != NULL)
temp2 = temp2->next;
temp2->next = temp;
}
}
void sort()//simple bubblesort
{
node *temp, *temp2;
temp = new node;
temp2 = new node;
string spare = 0;
for( temp = root; temp!=NULL;temp = temp->next)
{
if(temp->word > temp2->word)
{
spare = temp->word;
temp->word = temp2->word;
temp2->word = spare;
}
}
}
void read(ifstream& iFile)
{
size = 0;
string line;
if(iFile.is_open())
{
while(std::getline(iFile, line))
++size; //Figures out the size for the dynamic array
}
root = new node;
root->next = 0;//null
root->word = ""; //no data yet
for (int i = 0; i < size; i++)
{
if(i<3)
iFile.ignore();
getline(iFile,line);
addnode(line);
sort();
}
}
void write(ofstream& oFile)
{
node *temp;
temp = root;
while (temp!=NULL)
{
oFile << temp->word << endl;
temp = temp->next;
}
}
bool exists(string target) //I cant think of a single way to search a singly linked list that is faster than O(n)
{
node *temp;
temp = root;
while (temp!=NULL)
{
if (temp->word == target)
return true;
}
return false;
}
//Constructor
LinkedListStorage();
//Destructor
~LinkedListStorage()
{
node *ptr;
for (ptr = root; root;ptr = root)
{
root = root->next;
delete ptr;
}
}
LinkedListStorage(const LinkedListStorage &other) :root(NULL)
{
node *cur = other.root;
node *end = NULL;
while(cur)
{
node* x = new node;
x->word = cur->word;
if(!root)
{
root = x;
end = root;
}
else
{
end->next = x;
end = x;
}
cur = cur->next;
}
}
friend ofstream& operator<<(ofstream& OS,LinkedListStorage& LLS);
friend ifstream& operator>>(ifstream& IS, LinkedListStorage& LLS);
};
ofstream& operator<<(ofstream& OS, LinkedListStorage& LLS)
{
LLS.write(OS);
return OS;
}
ifstream& operator>>(ifstream& IS, LinkedListStorage& LLS)
{
LLS.read(IS);
return IS;
}
and finally ArrayStorage.ccp
#include <fstream>
#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
class ArrayStorage
{
//Variables
private: string* storageArray;
int aSize; // array size
public:
//methods
void read(ifstream& iFile)
{
aSize = 0; //intialise
string line;
if(iFile.is_open())
{
while(std::getline(iFile, line))
++aSize; //Figures out the size for the dynamic array
}
string *pnArray = new string[aSize];//intialise array
for (int i = 0; i < aSize; i++)
{
if(i<3)
{
iFile.ignore();
}
getline(iFile,pnArray[i]); //this should not contain any important data due to the way sorting is done
sort(pnArray,pnArray + i); //sorts the array
}
storageArray = pnArray;
}
void write(ofstream& oFile)
{
if(oFile.is_open())
{
for (int j = 0; j < aSize; j++)
{
oFile << storageArray[j] << endl;
}
}
}
bool exists(string target)
{
int lo = 1;
int hi = aSize - 1;
int mid = 0;
int comparitor = 0;
while(true)
{
mid =(lo+hi+1)/2; // the plus one is to force it to round up to the nearest highest integer
if(mid == hi)
{
if(comparitor = target.compare(storageArray[lo]) == 0)
{
return true;
}
else if(comparitor = target.compare(storageArray[hi]) == 0)
{
return true;
}
else
{
return false;
}
}
comparitor = target.compare(storageArray[mid]);
if(comparitor == 0)
return true;
else if(comparitor > 0)
lo = mid;
else if(comparitor < 0)
hi = mid;
}
}
bool stdExists(string target)
{
int check = count(storageArray,storageArray+(aSize-1),target);
if(check >0)
return true;
else
return false;
}
//copy constructor
ArrayStorage(const ArrayStorage &other)
{
storageArray = new string[other.aSize];
aSize = other.aSize;
memcpy(storageArray,other.storageArray,sizeof(string) * aSize);
}
//constructor
ArrayStorage();
//Destructor
~ArrayStorage()
{
delete [] storageArray;
}
//overload operator
const ArrayStorage &operator=(const ArrayStorage &other)
{
if(this == &other) return *this;
delete[] storageArray;
storageArray = new string[other.aSize];
aSize = other.aSize;
memcpy(storageArray,other.storageArray,sizeof(string) * aSize);
return *this;
//Friends for benefit
}
friend ofstream& operator<<(ofstream& OS, ArrayStorage& SA);
friend ifstream& operator>>(ifstream& IS, ArrayStorage& SA);
};
ofstream& operator<<(ofstream& OS, ArrayStorage& SA)
{
SA.write(OS);
return OS;
}
ifstream& operator>>(ifstream& IS, ArrayStorage& SA)
{
SA.read(IS);
return IS;
}
抱歉,文字太多了,如果不需要,请告诉我,我会删除它!
最佳答案
您的源文件正在重新定义每个类;他们不应该那样做。相反,它们应该包含定义类的头文件,然后定义类中声明的每个函数。例如:
// ArrayStorage.cpp
#include "ArrayStorage.h"
bool ArrayStorage::exists(string target) {
// Function body here
}
关于c++ - LNK 1120 + LNK2019 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16398495/
几天前我问了一个类似的问题,它帮助我找到了 __declspec() 的正确方向,但我又被卡住了。我会尽可能清楚。希望有人能告诉我我做错了什么。它可能是一些小而简单的东西。 项目信息: jc:
我想在某些特定路径中创建某些文件的快捷方式(.lnk)。例如在 ("H:\happy\hi\new.lnk") 中创建我的文件 ("D:\New folder\new.exe") 的快捷方式我想用 p
This question already has answers here: What is an undefined reference/unresolved external symbol er
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的 disk-on-key 中有一个可执行文件,位于 dir\program\prog.exe我想在 DoK 的根目录上有一个可执行文件的快捷方式,即 prog.lnk 将引用 dir\progra
我一直在寻找一种在 C# 中创建文件快捷方式的简单方法,但我只找到了执行此操作的外部 dll。这实际上非常令人惊讶,没有内置的方法可以做到这一点.. 无论如何,我知道 lnk 文件只是具有特定命令和给
我一直在寻找问题的解决方案,遇到了 JasonMArcher 回答的帖子,想知道我是否可以更具体地满足我的需求。 我们最近更换了一个新服务器,由于它的名称从//sbcmaster 更改为//sbcse
我有一堆.lnk文件,需要根据快捷方式指向的目标来区别对待它们。我发现很少有其他语言如何做到这一点,但与使用powershell做到这一点无关。 我已经试过了: $sh = New-Object -C
我在使用C++创建快捷方式时遇到问题。.lnk文件已创建,但是目标具有无效路径。 您能解释一下为什么这段代码没有创建正确的快捷方式吗?有人可以帮我修复我的代码吗? 这是代码 // RepChrome.
rmap_utils.h #ifndef UTILS_RANGE_MAP_H #define UTILS_RANGE_MAP_H #include #include #include #incl
这个问题在这里已经有了答案: Can't set value of static object field (error LNK2001: unresolved external symbol) (
我刚刚使用 NuGET 包管理器安装了 SFML 包。安装后。我从它的官方页面运行了一个基本程序。只需复制和粘贴。 #include int main() { sf::RenderWindo
这个问题在这里已经有了答案: Can't set value of static object field (error LNK2001: unresolved external symbol) (
这个问题已经有答案了: Windows shortcut (.lnk) parser in Java? (9 个回答) 已关闭 6 年前。 我在Windows的“最近的项目”中有一些文件夹/文件。我想
首先,对不起我的英语..如何将现有的快捷方式包含到我的解决方案中? 当我尝试将现有项目添加到我的项目中时,visual studio 似乎尝试添加链接目标,而不是链接本身,因为它给我以下错误: 找不到
我们有一个充满指向文件夹的快捷方式(.lnk 文件)的网络驱动器,我需要在 C# Winforms 应用程序中以编程方式遍历它们。 我有哪些实用选择? 最佳答案 添加 IWshRuntimeLibra
我正在编写 32 位服务应用程序,我希望能够在其中为登录用户 启动“开始”菜单项。我确实设法通过模拟用户并使用 CreateProcessAsUser 和命令行启动选定的 .lnk 文件来完成此任务:
当您尝试打开不再有效的快捷方式文件 (.lnk) 时,Windows 会提示您:“此快捷方式已被更改或移动,因此此快捷方式将不再正常工作。”是否有 python 代码可用于检测此类快捷方式是否不再有效
我有一个名为 Siemens NX 的程序的多个版本。 NX 使用环境变量进行配置。我需要 NX 10.0 使用一组与使用系统环境变量的 NX 7.5 不同的环境变量。因此,我编写了一个批处理文件来设
我有一个打开 *.postfix 文件的 c# 程序。 如果用户运行指向我的文件类型的 (.lnk) 快捷方式,我的程序将打开目标。 那么,我的程序怎么知道它是由 (.lnk) 快捷方式启动的(并获取
我是一名优秀的程序员,十分优秀!