已解决我的“WorkoutGeneratorMain.cpp”被IDE归类为C ++标头。我不确定为什么会这样,但我修好了。现在我开始处理我的所有其他错误。
全部谢谢!
=============================================== ====
在Visual Studio 2010 Professional中编译程序时出现以下错误:
------ Build build:Project:WorkoutGenerator,Configuration:Debug Win32 ------
Build build 8/15/2012 12:19:18 PM InitializeBuildStatus:
触摸“Debug \ WorkoutGenerator.unsuccessfulbuild”。
ClCompile:
LiftClass.cpp
ManifestResourceCompile:
所有输出都是最新的 MSVCRTD.lib(crtexe.obj):错误LNK2019:未解析的外部符号主要在引用中引用_ _tmainCRTStartup
C:\ Users \ Shanalex \ Documents \ Programming \ C ++ Programming \ WorkoutGenerator \ WorkoutGenerator \ Debug \ WorkoutGenerator.exe:致命错误LNK1120:1未解析的外部
在我的搜索中,我找到了几个解决这个问题的指南;但是,他们几乎都建议该文件是设置为控制台设置的Windows应用程序,反之亦然。我的程序是一个控制台应用程序,所有设置似乎都适用于win32控制台应用程序。有些链接错误,但我似乎没有其他人的项目设置问题。
我对C ++和VS2010中的多部分程序相当新。我很容易犯一个基本的错误,但在将我的代码与各种教程和书籍的代码进行比较时,我找不到它。
我有三个代码文件,如下所示:
LiftClass.h
//Lift Classes
//Defines the Lift Class
#ifndef LIFTCLASSHEADER_H_INCLUDED
#define LIFTCLASSHEADER_H_INCLUDED
#include <iostream>
#include <string>
#include <vector>
#include <random>
#include <ctime>
using namespace std;
class Lift
{
public:
string LName;
string LType;
string LBody;
vector<double> LLoadScale;
Lift(string Name, string Type, string Body,
double Pawn, double Bishop, double Knight, double Rook, double Royal);
};
Lift::Lift(string Name, string Type, string Body,
double Pawn, double Bishop, double Knight, double Rook, double Royal)
{
LName = Name,
LType = Type,
LBody = Body,
LLoadScale.push_back(Pawn),
LLoadScale.push_back(Bishop),
LLoadScale.push_back(Knight),
LLoadScale.push_back(Rook),
LLoadScale.push_back(Royal);
}
#endif
然后,我有了我的.cpp实现的lift类,以及一个随机化它们的函数。
LiftClass.cpp
//Exercise Randomizer using Lift Class
//Initializes Lifts for use in Workout Generator
//Version 2.0 will reference Database
#include "LiftClass.h"
Lift exerciseRandomizer() //Define database of exercise & randomly select one
{
vector<Lift> LiftDatabase;
Lift Clean("Clean", "Olympic", "Full", .33, .66, 1, 1.33, 1.66);
Lift Bench("Bench Press", "Heavy", "Upper", .33, .66, 1, 1.5, 2);
LiftDatabase.push_back(Clean);
LiftDatabase.push_back(Bench);
srand(static_cast<unsigned int>(time(0))); //Seed random number
unsigned randomNumber = rand(); //Generate Random Number
//Get random between 1 and total lift count
unsigned randomSelector = (randomNumber % LiftDatabase.size());
return LiftDatabase[randomSelector];
}
最后,我有我的主要功能WorkoutGeneratorMain.cpp
WorkoutGeneratorMain.cpp
//Workout Generator
//Generates workouts based on goal and fitness level
#include "LiftClass.h"
int main()
{
exerciseRandomizer();
Lift LiftA = exerciseRandomizer();
cout << "\n\nYour first lift is: " << LiftA.LName << "\n\n Its lift type is: " << LiftA.LType << endl;
cout << "\n\nGood Luck!" << endl;
system("pause");
return 0;
}
非常感谢任何建议。
谢谢,
-Alex
答案 0 :(得分:3)
您认为int main()
是可执行文件的入口点,但它不是(必然)。 :)根据项目设置,运行时可能会调用wmain
或main
。这就是您使用_tmain
的原因,这是一个扩展到运行时期望的宏。
尝试将其更改为:
int _tmain(int argc, _TCHAR* argv[])
PS - 这应该是自动生成的,也许你删除它而不是替换_tmain
的内容。