gpt4 book ai didi

c++ - 如何从重载函数中调用父类成员函数?

转载 作者:行者123 更新时间:2023-11-30 04:08:35 26 4
gpt4 key购买 nike

<分区>

我创建了一个从字符串类公开继承的新类。我希望重载 <派生类中的(小于)运算符。但是从重载函数我需要调用父类 <运算符(operator)。调用此函数的语法是什么?如果可能的话,我想将运算符实现为成员函数。

在 Java 中有 super关键字。

我的代码如下。

#include<iostream>
#include<string>
using namespace std;
class mystring:public string
{
bool operator<(const mystring ms)
{
//some stmt;
//some stmt;
//call the overloaded <( less than )operator in the string class and return the value
}

};

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com