- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经创建了一个可变参数模板函数,它根据模板参数的类型执行不同的操作,在此不赘述。我将实现简化为一个非常简单的控制台打印示例:
#include <cstdint>
#include <cstddef>
#include <cstdio>
#include <cstring>
#include <type_traits>
void print(const char *chars) {
printf("%s", chars);
}
template<typename FirstType, typename ... OtherTypes>
inline void print(FirstType first, OtherTypes... others);
template<typename ... OtherTypes>
inline void print(const char *chars, OtherTypes... others) {
print(chars);
print(" ");
if (sizeof...(others) == 0) {
print("\r\n");
}
else {
print(others...);
}
}
template<typename FirstType, typename ... OtherTypes>
inline void print(FirstType first, OtherTypes... others) {
char buffer[10];
const char *format = nullptr;
if (std::is_same<int, FirstType>::value) {
format = "%d";
}
else if (std::is_same<char, FirstType>::value) {
format = "%c";
}
else if (std::is_pointer<FirstType>::value && (std::is_same<char*, FirstType>::value || std::is_same<const char*, FirstType>::value)) {
print((const char *) first, others...);
return;
}
if (format != nullptr) {
snprintf(buffer, 10, format, first);
}
print((const char *) buffer, others...);
}
int main() {
print("this is an example:", 'X');
return 0;
}
在上面的代码中,我用一个 const char*
和一个 char
调用可变参数函数。它工作正常,但问题是编译器给我一个警告:
[Timur@Timur-Zenbook tm]$ g++ tm.cpp -Wall -Wextra -o tm
tm.cpp: In instantiation of ‘void print(FirstType, OtherTypes ...) [with FirstType = char; OtherTypes = {}]’:
tm.cpp:24:14: required from ‘void print(const char*, OtherTypes ...) [with OtherTypes = {char}]’
tm.cpp:52:37: required from here
tm.cpp:40:15: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
print((const char *) first, others...);
^~~~~~~~~~~~~~~~~~~~
警告来自 char
参数,好像函数错误地将 char
的类型确定为与 const char*
相同因此触发了 const char*
的代码路径。
为什么我会收到此警告以及如何解决?
最佳答案
Why am I getting this warning
当 FirstType
为 char
时,该分支中的代码仍实例化,即使该分支永远不会真正执行。
how do I fix it?
将只对某些类型有意义的代码移到重载或特殊特征中,这样一开始就不会为不匹配的类型编译。
最简单的更改是完全删除 else if(std::is_pointer...
分支,并添加具有相同效果的重载:
template<typename ... OtherTypes>
inline void print(char *chars, OtherTypes... others) {
print((const char *)chars, others...);
}
关于c++ - 为什么这个 type_traits 代码给我一个整数到指针转换警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39828482/
我安装了 Qt 5.8,但出现此错误。我的 pro 文件中也有 CONFIG += c++14,我也尝试过使用 c++11。 /usr/include/x86_64-linux-gnu/qt5/QtC
我正在尝试构建 PrintFunctionNames来自 clang 的示例。但是我收到以下错误: [mac-osx:clang/examples/PrintFunctionNames] osx% c
我在 头文件中看到了一些实现,但是有些实现我找不到,像这样: // STRUCT TEMPLATE is_class template struct is_class : bool_constant
我有一个处理任何容器类型的接口(interface)。 std::vector、std::array,甚至 std::basic_string。问题是没有什么可以阻止某人传递没有连续内存的容器。 我目
看过this answer ,我尝试为其中的代码提供一个变量模板实用程序: template class Template> struct is_specialization : std::fals
我有一个函数“has_holes”,它应该根据掩码计算一些东西。位数由“掩码”的类型决定。因此我想使用模板。此外,我只想允许 has_holes 的实例化,它按值获取参数。所以我添加了一个类型特征“r
在 C++11 及更高版本中, header 包含很多类型检查的类,比如 std::is_empty , std::is_polymorphic , std::is_trivially_constr
我想让用户控制基类的“内部类型”。此代码工作正常。 版本 1 ( demo ) //library layer template class BT_trait{ public: using t
我想知道包含 type_traits 是否真的值得 header 只是为了获取枚举的基础类型。我正在创建一个 Flags 类,我希望它尽可能灵活,所以我使用 std::underlying_type:
我正在尝试从一个类似于下面所示的类中合并许多非常相似的函数方法,我认为有效实现它的最佳方法是通过使用模板结合模板函数特化或替代类型特征。我是模板特化和类型特征的新手,但我了解基本概念,这就是为什么我要
我正在编写一个模板类,其中包含一个执行某些按位运算的方法,因此我想限制类型,以防在 is_integral 中使用此方法。我举了一个简单的例子 here并修改如下: #include #includ
我已经创建了一个可变参数模板函数,它根据模板参数的类型执行不同的操作,在此不赘述。我将实现简化为一个非常简单的控制台打印示例: #include #include #include #inclu
是否可以根据 type_traits 信息重载函数/类模板? 例子: #include template class object_worker { public: object_worke
如何从此 operator+() 返回 std::vector? #include #include #include #include #include template struct i
我在看最新的C9 lecture并注意到一些有趣的事情.. 在他对 type_traits 的介绍中,Stephan 使用了以下(如他所说,人为的)示例: template void foo(T t
是否有可能使用类型删除来创建封装任意类型的对象(我们称之为 ErasedType ),并且可以在运行时查询以判断是否存在另一个任意类型 T可转换为 ErasedType ? 考虑之后,我不认为这是可能
我一直在尝试浏览 Boost type-traits header ,考虑到无数#define 提供的强烈不可读性,现在我感到非常恶心。然后是更多#define。 具体来说,我有兴趣弄清楚以下 3 个
讨论 根据标准§20.10.2/1 Header 概要 [meta.type.synop]: 1 The behavior of a program that adds specializations
我有以下情况:我的问题围绕使用强类型枚举类作为标志(就像在 C# 中使用 Flags-Attribute 一样)。我知道这不是首先要使用枚举类的方式,但这不是这个问题的重点。 我已经定义了几个用于这些
背景 我正在尝试写一个 class template Hasher这将以两种不同的方式实现,具体取决于是否 std::hash已为 T 实现: template struct Hasher { s
我是一名优秀的程序员,十分优秀!