C++ Primer(第五版) 14.9.2--14.9.3节练习

本文讨论了C++ Primer第五版中14.9.2至14.9.3节的练习,涉及类型转换和二义性问题。具体分析了不同类型的变量之间转换的优先级和匹配规则,例如LongDouble到int或float的转换,以及SmallInt与LongDouble之间的运算,揭示了标准类型转换与用户自定义转换之间的权衡和潜在冲突。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

14.50    1) int ex1 = ldObj;   需要把LongDouble转换为int,LongDouble未定义对应的类型转换运算符,会先把LongDouble转换为double或float,再转为int,operator double()和operator float()都符合要求,产生二义性;

             2) float ex2 = ldObj;  与operator float()精确匹配。

14.51    double转换为int是标准类型转换;double转换为LongDouble是用户自定义转换;标准类型优先,所以cal(dval)会调用             void calc(int).

14.52   先列出相关的类型:

class SmallInt {
    friend SmallInt operator+(const SmallInt&, const SmallInt&);
public:
    SmallInt(int = 0);
    operator int() const { return val; }
private:
    std::size_t val;
};


struct LongDouble {
    LongDouble operator+(const SmallInt&);
    LongDouble(double = 0.0);
    operator double();
    operator float();
};

LongDouble operator+(LongDouble&, double);

SmallInt si;
LongDouble ld;
ld = si + ld;
ld = ld + si;

对于 ld = si + ld; LongDouble无法转换为SmallInt, SmallInt的friend operator+不适用;SmallInt无法转换为LongDouble,LongDouble的成员operator+和非成员operator+都不适用;SmallInt可转换为int,LongDouble可转换为double或float,内置的operator+(int, float)和operator+(int, double)都适用,产生二义性;                                                                                               对于ld = ld + si;  LongDouble无法转换为SmallInt, SmallInt的friend operator+不适用;LongDouble operator+(const SmallInt&)精确匹配,适用;SmallInt无法转换为double,LongDouble operator+(LongDouble&, double)不适用;内置的                operator+(float, int)和operator+(double, int)也可行,但需要类型转换,优先使用LongDouble operator+(const SmallInt&)。

14.53    先看friend SmallInt operator+(const SmallInt&, const SmallInt&),适用,3.14先转为int,再转为SamllInt; 内置的             operator+(int, double)也适用。因此产生二义性。改为:double d = s1 + SmallInt(3.14); 匹配SamllInt的友元函数。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值