- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用clang++
来扩展this post 中的模板代码.这是我想出的。
constexpr unsigned int requires_inRange(unsigned int i, unsigned int len) {
return i >= len ? throw i : i;
}
class StrWrap
{
unsigned size_;
char * const begin_;
public:
template< unsigned N >
constexpr StrWrap( const char(&arr)[N] ) : begin_(arr), size_(N - 1) {
static_assert( N >= 1, "not a string literal");
}
constexpr char operator[]( unsigned i ) {
return requires_inRange(i, size_), begin_[i];
}
constexpr operator const char *() {
return begin_;
}
constexpr unsigned size() {
return size_;
}
};
constexpr unsigned count( StrWrap str, char c, unsigned i = 0, unsigned ans = 0 )
{
return i == str.size() ? ans :
str[i] == c ? count(str, c, i + 1, ans + 1) :
count(str, c, i + 1, ans);
}
int main(int argc, char const *argv[])
{
static_assert( count("dude", 'd') == 2, "d != 2" );
return 0;
}
但是,博客文章中的代码未编译:
/usr/bin/clang++ -Xclang -ast-print -fsyntax-only test_debugger2.cpp > main.exe
test_debugger2.cpp:12:48: error: cannot initialize a member subobject of type 'char *const' with an lvalue of type 'const char [5]'
constexpr StrWrap( const char(&arr)[N] ) : begin_(arr), size_(N - 1) {
^ ~~~
test_debugger2.cpp:38:26: note: in instantiation of function template specialization 'StrWrap::StrWrap<5>' requested here
static_assert( count("dude", 'd') == 2, "d != 2" );
^
test_debugger2.cpp:38:20: error: static_assert expression is not an integral constant expression
static_assert( count("dude", 'd') == 2, "d != 2" );
^~~~~~~~~~~~~~~~~~~~~~~
2 errors generated.
我可以找到这个相关问题 Cannot initialize a member subobject of type 'const signed char *' with an lvalue of type 'const char [X]' ,但我不知道如何修复它。
通过使用标志 -Xclang -ast-print -fsyntax-only
我只要求 clang
扩展模板并将它们的扩展打印到标准输出:Compile-time 'String' Manipulation with Variadic Templates
我正在尝试学习在编译时使用据说是图灵完备的 C++ 模板进行字符串计算,即字符串拆分、字符串连接、查找、替换、剪切等:C++ templates Turing-complete? , 然后,我将示例作为该博客文章并使用 clang
扩展它们以了解它们如何工作以及我如何使用它们来解决任何编译时(可能的)模板计算。
这是我的编译器版本:
clang version 8.0.1 (tags/RELEASE_801/final)
Target: x86_64-unknown-windows-cygnus
Thread model: posix
InstalledDir: /usr/bin
如何修复该博客文章中的模板扩展?
最佳答案
这个
char * const begin_;
是指向 char
的 const
指针(指针是 const,而不是它指向的东西)。这个
const char(&arr)[N]
是对类型为 const char
的 N
元素数组的引用。数组的元素是常量。您不能将指向非常量点的指针指向 const 元素数组(至少在没有蛮力的情况下)。您需要将指针设为 const char*
或将数组设为非 const 元素的数组……
我猜你是想写
const char* begin_;
注意:从 C++17 开始,您可以只使用 std::string_view
……
关于c++ - 如何使用 C++ 模板推断编译时 const char 字符串的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59418505/
当使用模板模板参数时,我如何推断或删除模板模板的模板类型? 考虑以下 SSCCE: #include #include #include using namespace std; templat
假设我有一些特质: trait A[T] { def foo: T } 一个扩展它的类: class B[T](t: T) extends A[T] { def foo = t } 以及父特征的子特征
一边玩-rectypes在某些时候选择 OCaml 我只是迷路了。 这个表达式几乎可以打字: # fun x -> x x;; - : ('a -> 'b as 'a) -> 'b = 但是这里 O
我正在编写一个类似 CRUD 的应用程序,并且通过主键进行大量查找(主键可以有不同的类型)。所以我定义了以下类型类: {-# LANGUAGE MultiParamTypeClasses #-} cl
我已经创建了关系 A 'is functional parent of' B并定义 'has functional parent'作为 'is functional parent of' 的倒数. '
给定一个使用 Kotlin 版本 1.3.61 和 JOOQ 版本 3.13.1 的系统,这样的方法会构建 union正常查询: val selectCommonPart = coalesce
考虑以下错误代码: fun x = if (null x) then 0 else (take 50 x) : (fun (drop 50 x)) 我注意到,我可以毫无问题地将它加载到
给定一个具有以下类型的函数 a: a::x -> Bool 和以下类型的另一个函数 b: b::Bool -> y 我正在尝试找出推断以下函数类型的步骤: c =\d -> d a b 有人可以帮助解
我正在尝试使用 Infer 工具来分析我的应用代码。我关注了these steps每次我尝试运行 infer -- gradle build 时,我都会收到以下错误: infer -- gradle
所以我制作了这个模板来定义内联仿函数: template struct AsFunctor { template std::invoke_result_t operator()(A
是否可以推断 CRTP 基类中模板化成员函数的返回类型? 虽然推断参数类型效果很好,但它因返回类型而失败。考虑以下示例。 #include template struct base { tem
使用 Series.interpolate 很容易在 Pandas.DataFrame 中插入值,如何进行外推? 例如,给定一个如图所示的 DataFrame,我们如何将它外推 14 个月到 2014
我想知道为什么这不起作用(缺少参数类型)? Seq(1,2,3).toSet.map(_ + 1) 但这确实: val foo = Seq(1,2,3).toSet foo.map(_ + 1)
我没有必要使用 SQLite3 shell 工具来维护一个小型数据库。我正在使用 -header -ascii标志,尽管据我所知,这适用于任何输出选择。我正在寻找一种方法来避免对返回的任何一个值的类型
我有以下组件 type PropTypes = { items: T[], header: (item: T) => React.Element, body: (item: T) => R
我想在 Eclipse/JSDT 中指定实例变量的类型,如下例所示: /** * @constructor */ function A() { /** @type Node */
我正在用 Python 编写一个方法,它看起来像这样: def rgb_to_grayscale(image): print(image.shape) pass 此处预期的类型是 nu
我有一个 my_values 数组,我正在尝试为其推断 true_values 数组中最接近、较小的值。使用下面的 find_nearest 函数并不能完成我想要的。我如何追加它以找到最近的、较小的值
在下面的代码中: template int b(int q, const std::array& types) { int r = q; for (int t : types)
在 Pandas DataFrame 中插入 NaN 单元非常容易: In [98]: df Out[98]: neg neu pos av
我是一名优秀的程序员,十分优秀!