- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是C++的完整入门者。我正在尝试调试代码,因为我确定存在一些指针错误,因此我仍在尝试理解但无法编译它。该代码最初来自我编写的Java程序,它只是一个带有一些比较方法的歌曲类,我已将其转录为c++以尝试学习两种语言之间的差异,该代码本身未显示任何错误,但无法显示编译时不会 pop 该错误。我尝试查看该错误的解决方案,但没有任何效果,因此这是我的win32控制台项目代码。感谢您的帮助。
// ConsoleApplication4.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <string>
#include <iostream>
using namespace std;
class Song {
private:
string Artist;
string Title;
string Lyrics;
public:
static int Sortcount;
static int Searchcount;
Song(string A_Artist, string T_Title, string L_Lyrics) {
Artist = A_Artist;
Title = T_Title;
Lyrics = L_Lyrics;
}
//Compares the artist of one song to another.
class ArtistComparator {
public:
int compare(Song *o1, Song *o2) {
string Artist1 = (*o1).Artist;
string Artist2 = (*o2).Artist;
Searchcount++;
if (Artist1.compare(Artist2) == 0){
return 0;
}
Searchcount++;
return (*o1).Artist.compare((*o2).Artist);
}
};
//Compares the title of one song to another.
class TitleComparator {
public:
int compare(Song arg0, Song arg1) {
string Title1 = arg0.Title;
string Title2 = arg1.Title;
return Title1.compare(Title2);
}
};
public:
//Testing method to make sure the Song class works and
//the compareTo method works.
int main(int argc, char** argv){
Song test1 = Song("cat", "bat", "this is not a real song");
Song test2 = Song("cat", "apple", "also not a real song");
int compareResult = test1.compareTo(test2);
if (compareResult == -1){
std::cout << "test1 comes first";
}
else{
cout << "test2 comes first";
cout << test2.toString();
}
};
string getArtist(){
return Artist;
};
string getTitle(){
return Title;
};
string getLyrics(){
return Lyrics;
};
string toString(){
return Artist + ", " + Title + ", " + Lyrics;
};
//compareTo method used for sorting songs.
//increments Sortcount each time it is called to keep track
//of the efficiency of the sort algorithm.
private:
int compareTo(Song other){
Sortcount++;
int art = Artist.compare(other.Artist);
if (art == 0){
return Title.compare(other.Title);
}
else
return art;
}
};
最佳答案
#include "stdafx.h"
#include <string>
#include <iostream>
using namespace std;
class Song {
private:
string Artist;
string Title;
string Lyrics;
public:
int Sortcount;
static int Searchcount;
Song(string A_Artist, string T_Title, string L_Lyrics) {
Artist = A_Artist;
Title = T_Title;
Lyrics = L_Lyrics;
}
//Compares the artist of one song to another.
class ArtistComparator {
public:
int compare(Song *o1, Song *o2) {
string Artist1 = (*o1).Artist;
string Artist2 = (*o2).Artist;
Searchcount++;
if (Artist1.compare(Artist2) == 0){
return 0;
}
Searchcount++;
return (*o1).Artist.compare((*o2).Artist);
}
};
//Compares the title of one song to another.
class TitleComparator {
public:
int compare(Song arg0, Song arg1) {
string Title1 = arg0.Title;
string Title2 = arg1.Title;
return Title1.compare(Title2);
}
};
public:
//Testing method to make sure the Song class works and
//the compareTo method works.
string getArtist(){
return Artist;
};
string getTitle(){
return Title;
};
string getLyrics(){
return Lyrics;
};
string toString(){
return Artist + ", " + Title + ", " + Lyrics;
};
//compareTo method used for sorting songs.
//increments Sortcount each time it is called to keep track
//of the efficiency of the sort algorithm.
int compareTo(Song other){
Sortcount++;
int art = Artist.compare(other.Artist);
if (art == 0){
return Title.compare(other.Title);
}
else
return art;
}
};
int main(int argc, char** argv){
Song test1 = Song("cat", "bat", "this is not a real song");
Song test2 = Song("cat", "apple", "also not a real song");
int compareResult = test1.compareTo(test2);
if (compareResult == -1){
std::cout << "test1 comes first";
}
else{
cout << "test2 comes first";
cout << test2.toString();
}
getchar();
return 0;
}
main()
移到compareTo()
函数public
直接被称为static
中删除了int Sortcount
,因为如果没有它我将无法更新变量。 关于c++ - C++错误LNK2019 : unresolved external symbol _main referenced in function _tmainCRTStartup,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29385910/
我使用 visual studio 2013 在 C 中编写程序,但出现此错误:MSVCRTD.lib(crtexe.obj):错误 LNK2019:函数 ___tmainCRTStartup 中引用
每当我尝试编译由 Appcelerator Titanium 生成的任何 iPhone 应用程序时,我都会在 Snow Leopard 10.6.2 上的 Xcode 3.2.1 中收到以下错误。但是
我有一个包含两个项目的解决方案 其中一个是控制台应用程序,另一个是Google Test项目 我的项目中有一个.h文件和一个带有main()的.CPP文件 我的gtest包含一个.CPP文件,该文件使
我正在尝试从最小的 Python 文件生成二进制文件: print 'hello' 使用此 makefile: #!/usr/bin/make -f export flags= cflags=$(fl
我一直在尝试将当前操作系统项目的大部分从 x86 汇编转换为 C,并使用 NASM 进行汇编并使用 MinGW 进行编译。链接时,我收到以下错误: ld: warning: cannot find e
我是编程新手,我正在复习 vector 的基础知识。我目前在运行此程序时遇到错误“链接器命令失败,退出代码为 1(使用 -v 请参阅调用)” 现在我已经看到了这方面的帖子,但我运行的 Xcode 显然
我在程序/游戏的主函数中调用了三个函数时遇到问题:initEnemy、drawEnemy 和 updateEnemy。每个在运行时都附有此错误:“错误 LNK2019:未解析的外部符号“...”在函数
当我尝试使用模板编译我的程序时出现一些链接器错误: GCD.h #include // allows program to perform input and output using namesp
这个问题不太可能帮助任何 future 的访问者;它只与一个小的地理区域、一个特定的时间点或一个非常狭窄的情况有关,这些情况并不普遍适用于互联网的全局受众。为了帮助使这个问题更广泛地适用,visit
我可以分别编译我的两个文件 serveur.c 和 client.c,但是当我尝试使用 makefile 时,它显示错误。我想要的很简单:两个编译文件:serveur.o 和 client.o。
我是 C 编程的新手,我正在编写一个程序,它开始抛出以下错误: error LNK2019 unresolved external symbol_printf referenced in functi
我不断收到此错误“_main”,引用自:...”我是C++的新手,Xcode可以向我解释为什么我收到此错误,以及需要怎么做才能解决它? 谢谢 #ifndef bank_h #define bank_h
#include #include #include void ChilkatSample(void) { // The mailman object is used for send
当我尝试编译我的 C++ 控制台应用程序时,我一直收到此错误:“函数 __tmainCRTStartup 中引用了未解析的外部符号 main”。我做了一些搜索,我所能找到的只是将我的“链接器”从 Wi
我有一些 C++ 代码。 鸟.h class Bird { std::string s; static int i; public: Bird(); ~Bird();
我目前正在尝试在 IOS 上编译一个基于 QT 的项目。我正在使用 cmake 创建和配置 .xcodeproject 和 xcode 以在设备上运行应用程序。 我成功地消除了所有先前的链接器错误,现
我正在尝试将我的 iOS 应用程序转换为 Swift。一切都很顺利,直到我尝试用 .swift 等效项替换我的 AppDelegate.m/.h。现在,在构建时,出现以下错误: Ld /Users/r
以下代码结构: 数组堆栈.h #ifndef ARRAY_STACK_H #define ARRAY_STACK_H #include "Array.h" // class ArrayStack #e
我这辈子都找不到解决办法!我正在使用 swift 。突然间我得到了这个错误: Undefined symbols for architecture i386: "_main", reference
我有以下错误: LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup 有很多与此错误相
我是一名优秀的程序员,十分优秀!