我是靠谱客的博主 心灵美煎饼,最近开发中收集的这篇文章主要介绍C++函数:std::tie 详解,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

tuple 即元组,能够理解为pair的扩展,能够用来将不一样类型的元素存放在一块儿,经常使用于函数的多返回值。

定义与初始化
tuple能够使用初始化列表进行赋值。

tuple<int,double,string> t3 = {1, 2.0, “3”};
std::tie: 建立左值引用的 tuple,或将 tuple 解包为独立对象

返回值
含左值引用的 std::tuple 对象。

注意
std::tie 可用于解包 std::pair ,由于 std::tuple 拥有从 pair 的转换赋值

示例
std::tie 能用于引入字典序比较到结构体,或解包 tuple :string

#include <iostream>
#include <set>
#include <string>
#include <tuple>

struct S {
    int n;
    std::string s;
    float d;
    bool operator<(const S& rhs) const {
        // 比较 n 与 rhs.n,
        // 而后为 s 与 rhs.s,
        // 而后为 d 与 rhs.d
        return std::tie(n, s, d) < std::tie(rhs.n, rhs.s, rhs.d);
    }
};

int main() {
    std::set<S> set_of_s;  // S 为可比较小于 (LessThanComparable)

    S value{42, "Test", 3.14};
    std::set<S>::iterator iter;
    bool inserted;

    // 解包 insert 的返回值为 iter 与 inserted
    std::tie(iter, inserted) = set_of_s.insert(value);

    if (inserted)
        std::cout << "Value was inserted successfullyn";
}

结果

Value was inserted successfully

std::tie会将变量的引用整合成一个tuple,从而实现批量赋值。

int i;
double d;
string s;

tie(i, d, s) = t3;

cout << i << " " << d << " " << s << endl;

会输出4 2 3

最后

以上就是心灵美煎饼为你收集整理的C++函数:std::tie 详解的全部内容,希望文章能够帮你解决C++函数:std::tie 详解所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部