Value category is not lifetime

Value category is not lifetime

C++值类别与生命周期完全没有关系

Here’s another slogan that needs more currency:

Value category is not lifetime.

What I mean by this mantra is probably best shown by example.

Two examples of a common C++ problem

Suppose we design a String class that looks like this:

class String {
    std::string s_;
public:
    explicit String(const char *s) : s_(s) {}
    operator std::string_view() const { return s_; }
};

And suppose we design a TokenIterator class that looks like this:

class TokenIterator {
    const char *s_;
public:
    explicit TokenIterator(const std::string& s) : s_(s.data()) {}
    auto& operator++() {
        // complicated logic to advance `s_` through the string
    }
};
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值