91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++ sfinae在模板元編程中的高級應用案例

c++
小樊
84
2024-08-15 16:07:41
欄目: 編程語言

  1. 判斷類型是否有指定成員函數
#include <iostream>

template <typename T>
struct has_member_function_foo
{
private:
    template <typename U>
    static auto test(int) -> decltype(std::declval<U>().foo(), std::true_type{});
    
    template <typename>
    static std::false_type test(...);
    
public:
    static constexpr bool value = std::is_same_v<decltype(test<T>(0)), std::true_type>;
};

struct A
{
    void foo() {}
};

struct B
{
    // No foo()
};

int main()
{
    std::cout << has_member_function_foo<A>::value << std::endl; // 1
    std::cout << has_member_function_foo<B>::value << std::endl; // 0
    return 0;
}
  1. 判斷類型是否為可調用對象
#include <iostream>

template <typename T>
struct is_callable
{
private:
    // SFINAE test
    template <typename U>
    static auto test(int) -> decltype(std::declval<U>()(), std::true_type{});

    template <typename>
    static std::false_type test(...);

public:
    static constexpr bool value = std::is_same_v<decltype(test<T>(0)), std::true_type>;
};

struct F
{
    void operator()() {}
};

int main()
{
    std::cout << is_callable<F>::value << std::endl; // 1
    std::cout << is_callable<int>::value << std::endl; // 0
    return 0;
}

這些案例展示了如何使用SFINAE技術來檢查類型的特定特征,這是模板元編程中非常有用的一種技服。

0
定兴县| 南昌市| 安仁县| 武乡县| 灵石县| 嫩江县| 德昌县| 江川县| 高唐县| 五河县| 宾阳县| 从化市| 青龙| 襄汾县| 蓬安县| 隆尧县| 惠东县| 拜泉县| 齐河县| 红安县| 桐城市| 平乐县| 瓦房店市| 长泰县| 雷波县| 佛山市| 东辽县| 托里县| 安福县| 名山县| 环江| 虎林市| 田阳县| 左权县| 永州市| 高安市| 太康县| 青阳县| 澎湖县| 晋江市| 武安市|