- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我读了“The C++ Programming language 4th edition, 1st printing, by Bjarne Stroustrup”这本书(来自 Amazon.com)。第 785 页。Stroustrup 正在解释他如何在使用“std::conditional + std::make_unsigned”时消除“::type”的显式书写,使用“类型别名”(关键字“using”)。但是在“std::conditional + std::make_unsigned”上使用“类型别名”会导致编译错误。到目前为止,一切都应该如此。他继续展示如何使用“模板类型函数的延迟评估”来消除这些编译错误。
问题在线Atype<make_unsigned<string>
和 myType2<string> ...
.
我使用的是 g++ 4.8.2。
#include <type_traits>
#include <string>
#include <iostream>
#include <typeinfo> // for typeid(...)
using namespace std;
template<class T>
struct ErrIndicator {
typedef ErrIndicator<T> type;
};
template<bool C, class T, class F>
using Conditional = typename conditional<C,T,F>::type;
template<typename T>
using Make_unsigned = typename make_unsigned<T>::type;
template<template<typename ...> class F, typename... Args>
using Delay = F<Args ...>;
template<class T>
using myType1 = Conditional<is_integral<T>::value,
Make_unsigned<T>,
ErrIndicator<T>
>;
template<class T>
using myType2 = Conditional<is_integral<T>::value,
Delay<Make_unsigned, T>, // delayed evaluation
ErrIndicator<T>
>;
template<class T>
using myType4 = Conditional<is_integral<T>::value,
make_unsigned<T>,
ErrIndicator<T>
>;
template<typename T>
class Atype {};
template<typename T>
void func1(T &ia /* output param */) {
cout << "unsigned integral type" << endl;
ia = 4; // "unsigned integral type" computation
}
template<typename T>
void func1(ErrIndicator<T> &) {
cout << "non integral type: " << typeid(T).name() << endl;
}
int main() {
myType1<int> var1a; // OK
// myType1<string> var1b; // Error; The book says error
// // should occur here. Here I understand.
myType2<int> var2a; // OK
// myType2<string> var2b; // Error - why?. Maybe I didn't get it,
// // but I understand the book as no
// // error should occur here.
// // @DyP answered it.
Atype<make_unsigned<string> > var3; // OK here, look below at @DyP
// // for "foo, bar, X" why
// // make_unsigned<string> is not an error here.
// make_unsigned<string> var6; // Error
// Atype<make_unsigned<string>::type > var4; // Error
Atype<make_unsigned<int>::type > var5; // OK
//-------------
myType4<string>::type var7; // Look below for "myType3", where @Yakk
// // obviates the necessity to write "::type".
// rsl7 = 1:
cout << "rsl7 = " << is_same<decltype(var7), ErrIndicator<string> >::value << endl;
func1(var7); // "non integral type" overload of func1()
//---------
myType4<int>::type var8;
// rsl8 = 1:
cout << "rsl8 = " << is_same<decltype(var8), unsigned int>::value << endl;
func1(var8); // "unsigned integral type" overload of func1()
}
最佳答案
我认为 Stroustrup 打算延迟对 make_unsigned<T>::type
的访问,因为此嵌套类型不是为非整数类型定义的。然而,使用别名模板对于 clang++ 和 g++ 似乎不够:它们解决了 Delay<Make_unsigned,T>
直接到Make_unsigned<T>
, 这到 make_unsigned<T>::type
.
整个例子是:
template<typename C, typename T, typename F>
using Conditional = typename std::conditional<C,T,F>::type;
template<typename T>
using Make_unsigned = typename std::make_unsigned<T>::type;
// the example
Conditional<
is_integral<T>::value,
Delay<Make_unsigned,T>,
Error<T>
>
// "The implementation of a perfect `Delay` function is nontrivial,
// but for many uses this will do:"
template<template<typename...> class F, typename... Args>
using Delay = F<Args...>;
问题当然是,Delay<Make_Unsigned,T>
是什么时候?解决?对于类模板(不是别名模板),它们仅在需要完整的对象类型或程序的语义受到影响时才隐式实例化。考虑:
#include <type_traits>
using namespace std;
template<class T>
struct foo
{
static_assert(is_same<T, void>{}, "!");
};
template<class X>
struct bar
{
// without the line below, no error!
//X x;
};
int main()
{
bar<foo<int>> b;
}
然而,别名模板并非如此。它们被替换为 [temp.alias]/2
When a template-id refers to the specialization of an alias template, it is equivalent to the associated type obtained by substitution of its template-arguments for the template-parameters in the type-id of the alias template.
恕我直言,这表明在上面的示例中,Delay<Make_unsigned,T>
相当于make_unsigned<T>::type
,将实例化 make_unsigned<string>::type
并导致编译时错误。
关于c++ - 模板类型函数的延迟评估,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20851788/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!