本文介绍了Base clase构造函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 可能是一个愚蠢的问题,但是,当我创建派生类的实例时,如何将参数传递给基类 构造函数?Probably a stupid question but, how do I pass arguments to the base classconstructor when I create an Instance of a derived class ?推荐答案 我相信这就是你要找的东西: class派生:公共基地 { 派生(int x):Base(x); }; -HowardI believe this is what you''re looking for:class Derived : public Base{Derived( int x ) : Base( x );};-Howard 你的教科书不包括这个吗? (你不能学习像C ++一样复杂的语言教科书) 回答问题: 通过指定初始化列表 class Base { $ b $公开: Ba se(int i); }; class派生:公共基地 { 公开: 派生(); }; 派生::派生():基础(5)//初始化程序列表初始化 //基础部分将5传递给ctor { } - Karl Heinz Buchegger kb******@gascad.at 你的教科书是否不包括这个? (你不能用C语言学习像C ++一样复杂的语言) Does your textbook not cover this? (You cannot learn a language as complex as C++ with a textbook) **** 错字:没有 - Karl Heinz Buchegger kb **** **@gascad.at 这篇关于Base clase构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-18 15:09