本文介绍了先生在范围解析中我们可以在类外定义构造函数吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

请尽快回复我



我尝试了什么:



i试图在类外定义一个构造函数并且它不起作用先生告诉我可以在类外面进行二分法

please reply me as soon as possible

What I have tried:

i have tried to define an constructor outside the class and it does not work sir tell me can it be possible to difine outside the class

推荐答案


// ctor.h header file
class A
{
public:
  A(); // just ctor declaration
};






and

// ctor.cpp source file
#include <iostream>
#include "ctor.h"

// this is the ctor definition
A::A(){std::cout << "A()" << std::endl;}

int main()
{
  A a;
}


这篇关于先生在范围解析中我们可以在类外定义构造函数吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-09 01:28