草庐IT

Main-Class

全部标签

c++ - g++ 链接问题 : In function `_start' : (. text+0x20): undefined reference to `main'

我收到对主要错误的undefinedreference-即使我已经定义了主要,并且(AFAICT),我已经正确链接了它。这是我的代码和我使用的命令://################################################//proj1.h#ifndef__SCRATCH_PROJ1_H#define__SCRATCH_PROJ1_HintaddOne(inti);#endif/*__SCRATCH_PROJ1_H*///################################################//proj1.cpp#include"pr

c++ - 专门为私有(private)类(class)的功能?

有没有办法为私有(private)类专门化一个函数(比如,std::swap)?例如,当我测试这个时:#includeclassOuter{structInner{inta;voidswap(Inner&other){usingstd::swap;swap(this->a,other.a);}};public:staticvoidtest();};namespacestd{templatevoidswap(Outer::Inner&a,Outer::Inner&b){a.swap(b);}}voidOuter::test(){usingstd::swap;Innera,b;swap(a

c++ - 使用 -g 选项编译但 "Single stepping until exit from function main, which has no line number information"

我在使用gdb时遇到了一些问题。这是我在一个名为main.cpp的文件中的代码#includevoidmyfunc();intmain(){charmsg[]="HelloWorld!";myfunc();std::cout我使用这个命令来编译这段代码:g++-g-Wallmain.cpp-ofoo接下来,我使用了gdb:$gdbfoo(gdb)startTemporarybreakpoint1at0x80487c3Startingprogram:/home/laptop/workspace/fooTemporarybreakpoint1,0x080487c3inmain()(gdb)

c++ - 嵌套类声明 : template vs non-template outer class

我有一个C++模板类,里面有一个嵌套类,比如:templateclassOuter_t{public:classInner;Inneri;};templateclassOuter_t::Inner{public:floatx;};intmain(){Outer_to_t;//3oranyarbitraryinto_t.i.x=1.0;return0;}编译没有任何问题。然而,一旦我声明了一个类似的非模板类,就像这样:classOuter_1{public:classInner;Inneri;};classOuter_1::Inner{public:floatx;};intmain(){

c++ - Gtest : Expected Class-Name Before '{'

我正在尝试将Gtest下的测试用例转换为使用测试夹具,以便在添加更多测试时可以使用通用设置。但是,这会导致错误:test_integrate.cc:4:47:error:expectedclass-namebefore'{'tokenclassIntegratorTest:public::testing::test{这种失败是我无法理解的,因为根据我的经验,它通常是由循环导入引起的,并且导入与工作代码相比没有变化。完整代码如下:#include"gtest/gtest.h"#include"utils/integrate.hpp"classIntegratorTest:public::

c++ - 我如何声明一个放在 main 之后的类模板?

我正在尝试实现一个堆栈模板类。但是我想在main之前声明它。我可以这样做吗?我知道如果将main放在模板之后它会编译,但是是否可以先将main然后是模板?#include//startdeclarationoftemplatetemplateclassstack;//enddeclarationoftemplateintmain(){stacks(5);s.push('a');s.push('b');couts1(10);s1.push(3.2);s1.push(0.5);coutclassstack{T*s;intsize;//HowmanyelementsIcanstole.int

c++ - 处理 main 中的可选参数

假设我有一个main函数,它基本上只是调用另一个函数作为程序的入口点。该函数(以及整个程序)有一些强制参数和一些可选参数:#include#includevoidfunction_to_call(std::stringarg1,std::stringarg2,std::stringarg3,std::stringarg4,std::stringarg5="foo",std::stringarg6="bar",intnum1=1,intnum2=2){//dofancystuffhere}intmain(intargc,char**argv){intnum1,num2;std::stri

c++ - 为什么一个 const Class& 可以被初始化为自身?

今天我遇到了一个非常愚蠢但难以检测的错误。相关代码如下:classVector;classPointIterator{constVector&x;constVector&yv;PointIterator(constVector&xv,constVector&yvo):x(xv),yv(yv){;};//^^hereiswrong};为什么这样的代码是合法的C++?在任何情况下都可以使用yv变量吗?我知道关于intx=x+1;的类似问题,(请参阅thisquestion)但后者未正确初始化,您仍然可以使用x变量,而在上面的代码中,我认为您不能使用yv。奖励点:是否有任何编译选项可以让我检

c++ - 当我们说操作系统的控制在程序执行时传递给 main() 函数时,我们是什么意思?

假设我们正在尝试运行任意程序-intmain(){statement1;statement2;statement3;}然后人们常说,在程序执行的过程中,操作系统的控制权被传递给了main()函数,在执行完main函数中的所有语句之后,控制权再次交还给操作系统。控制是什么意思?如果控制真的从操作系统传递给程序那么多个程序如何同时运行? 最佳答案 “控制”是“执行语句的能力”的简称。在你的程序运行之前,操作系统会执行语句将你的程序代码加载到内存中,而你的程序没有执行语句的能力(即没有控制权)。一旦您的程序加载并准备好运行,操作系统就会为

c++ - C++ 中的 class a() 和 class a = class() 有什么区别?

来自Java和C#世界,一直喜欢用someclassa=someclass();代替someclassa();在C++中初始化一个类变量。但是,我的编译器有时会提示ErrorC2280:Attemptingtoreferenceadeletedfunction它们之间有什么区别吗?哪个更好? 最佳答案 Isthereanydifferencebetweenthem?一个大的:someclassa();isdeclaringafunction!someclassa=someclass();,在C++17'scopyellision之前