- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我知道why I can't use float as template parameter以及如何设置模板类的 static const float 成员,这要归功于一对分子/分母。但我正在尝试另一个基于 reinterpret_cast 的“hack”,以从其 IEEE754 十六进制书写中“emule” float 模板参数。
这是一小段代码:
#include <iostream>
#include <cstdint>
template <uint32_t T>
struct MyStruct
{
static const float value;
};
template <uint32_t T>
const float MyStruct<T>::value = *reinterpret_cast<float*>(T);
int main()
{
typedef MyStruct<0x40490fdb> Test;
std::cout << Test::value << std::endl;
return 0;
}
我编译它...
g++ -Wall -pedantic main.cpp -std=c++0x -g
没有警告。
它出现了段错误...
brugelca@artemis:~/workspace/draft$ ./a.out
Segmentation fault (core dumped)
这是 valgrind 的输出:
brugelca@artemis:~/workspace/draft$ valgrind ./a.out
==10871== Memcheck, a memory error detector
==10871== Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al.
==10871== Using Valgrind-3.8.1 and LibVEX; rerun with -h for copyright info
==10871== Command: ./a.out
==10871==
==10871== Invalid read of size 4
==10871== at 0x4008B5: __static_initialization_and_destruction_0(int, int) (main.cpp:11)
==10871== by 0x4008D1: _GLOBAL__sub_I_main (main.cpp:18)
==10871== by 0x40093C: __libc_csu_init (in /home/brugelca/workspace/draft/a.out)
==10871== by 0x5159D74: (below main) (libc-start.c:219)
==10871== Address 0x40490fdb is not stack'd, malloc'd or (recently) free'd
==10871==
==10871==
==10871== Process terminating with default action of signal 11 (SIGSEGV)
==10871== Access not within mapped region at address 0x40490FDB
==10871== at 0x4008B5: __static_initialization_and_destruction_0(int, int) (main.cpp:11)
==10871== by 0x4008D1: _GLOBAL__sub_I_main (main.cpp:18)
==10871== by 0x40093C: __libc_csu_init (in /home/brugelca/workspace/draft/a.out)
==10871== by 0x5159D74: (below main) (libc-start.c:219)
==10871== If you believe this happened as a result of a stack
==10871== overflow in your program's main thread (unlikely but
==10871== possible), you can try to increase the size of the
==10871== main thread stack using the --main-stacksize= flag.
==10871== The main thread stack size used in this run was 8388608.
==10871==
==10871== HEAP SUMMARY:
==10871== in use at exit: 0 bytes in 0 blocks
==10871== total heap usage: 0 allocs, 0 frees, 0 bytes allocated
==10871==
==10871== All heap blocks were freed -- no leaks are possible
==10871==
==10871== For counts of detected and suppressed errors, rerun with: -v
==10871== ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 2 from 2)
这段代码应该编译吗? (我有点惊讶 clang 和 g++ 都允许 reinterpret_cast)为什么会出现段错误?首先如何实现我想要的?
最佳答案
您的代码将 0x40490fdb
重新解释为指向 float
的指针,而不是 float
的十六进制值。因此出现了段错误。
尝试以下操作:
constexpr float uint32_to_float(uint32_t val) {
return *reinterpret_cast<float*>(&val);
}
template <uint32_t T>
const float MyStruct<T>::value = uint32_to_float(T);
关于c++ - 一个 "hack"来获取 float 模板参数工作编译但在 g++ 和 clang 上出现段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22921893/
我知道的引用资料在这里: http://clang.llvm.org/docs/ClangCommandLineReference.html http://clang.llvm.org/docs/Di
这两个工具似乎有一些共同的目标,而 documentation of clang-tidy对其功能非常明确,clang-check's有点稀疏。 如果我只能运行这些工具中的一个,同时进行相同的检查,那
我不清楚 clang 使用的汇编器。 AFAIK native 又名 GNU 汇编器和链接器被使用(与 gcc 一起提供)。 clang -v main.c clang version 3.4.2 T
在哪里可以找到 Clang 标志的完整列表? 还有一些,例如 -include-pch,甚至没有在手册页中列出。 :( 我知道 GCC 使用一些相同的标志,但它不包含诸如 -Os 之类的文档,我相信这
大多数成熟的编译器似乎对堆栈变量破坏有很好的支持。 海湾合作委员会:-fstack-protector xlC: -qstackprotect 英特尔:-fstackprotector window
我的命令: /usr/bin/c++ -fPIC -I/Users/me/project/include -I/usr/local/include/opencv \ -I/usr/local/incl
我正在研究 CLang 3.5。我正在尝试获取有关在 C++ 项目中声明的变量的信息。 如何获取 clang::VarDecl 中变量的数据类型或限定类名, clang::FieldDecl或 cla
我正在尝试构建 LLVM 编译器,以便我可以在 Apple M1 上启用 OpenMP。 我正在使用 LLVM 开发树,(因为我最近看到一些 OpenMP 运行时对此进行了处理)。 我已经结束了这个脚
背景: 在 Windows 10 PC 上,我有一个 C++ 代码库。使用 CMAKE 我生成了一个 Mingw-w64 项目(使用 Eclipse IDE)和一个 Visual Studio 201
下面是我想做的。 我想通过使用 cmake 的正确程序检测 clang 来使用 clang/clang++ 进行编译。 请告诉我可以解决我将描述的问题的正确程序。 test environment:
基本问题 我有以下代码 #include #include using namespace std; int main () { int32_t spam; spam=5; cout
当我在xcode中编译.c文件时,出现错误提示: clang error: argument unused during compilation: '-fno-objc-exceptions' [-W
Clang has several kinds of diagnostics ,其中三种主要是错误、警告和注释。 注释通常伴随着某些警告和错误,例如重复定义: error: conflicting t
我正在调整 Clang 工具模板(如 here 所述)以在我的代码中搜索特定的方法调用。为了稍后重写该调用,我想获取调用该方法的参数的类型,以及调用该方法的对象的类型。 我设法找到了一个可以回调以下内
我必须通过在它之前添加一个语句来检测 clang 中的某些语句。我有一个指向 Expr 对象的指针,我需要在包含它的语句之前插入另一个语句。现在我正在使用一种hacky方法,它只是将 SourceLo
类 clang::ASTContext 有一个方法: DynTypedNodeList getParents(const NodeT &Node) 它返回给定 AST 节点的父节点列表。 通常 AST
我想修改代码分析器程序clang-tidy的检查正在做,但是好像是配置文件.clang-tidy的内容正在被忽视。 我通过调用 clang-tidy 创建文件带旗-dump-config并将输出重定向
有没有办法用clang创建一个可以合理地适合页面的调用图? 即给出: #include using namespace std; int main() { int a; cin>>a;
我正在编写一个 Clang 工具,并且试图弄清楚如何在访问程序 AST 的情况下评估字符串文字。给定以下程序: class DHolder { public: DHolder(std::strin
我想在 Clang 中尝试一些新功能,有人提到我 Clang TOT . 现在这可能是一个明显的问题,到底是什么Clang TOT . TOT 一定是一些我不熟悉的首字母缩写词。 任何人都可以启发我吗
我是一名优秀的程序员,十分优秀!