- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下程序(使用标准随机数引擎)给出“模板参数推导/替换失败”编译错误:
http://coliru.stacked-crooked.com/a/e3c3ac933ed7b958
/// LCE1.cpp
///
/// Tests the linear congruential engine.
///
/// Dir: SW > Applications > Samples > C++Samples > Introductory > StdLib > Numerics > RandomNumbers > Engines > LCE > LCE1
///
#include <random> /// linear_congruential_engine
#include <iostream>
using namespace std;
/// Generate random numbers using the specified engine.
template<typename Eng>
void gener();
int main()
{
gener<typename decltype(linear_congruential_engine)>();
}
/// Generate random numbers using the specified engine.
template<typename Eng>
void gener()
{
/// Create an engine of the specified type.
Eng e;
/// Generate 500 random numbers.
for (int i = 0; i < 500; ++i)
e();
cout << "OK" << endl;
}
编译错误为:
g++ -std=c++14 -O2 -Wall -pedantic -pthread main.cpp && ./a.out
main.cpp: In function 'int main()':
main.cpp:21:4: error: parse error in template argument list
gener<typename decltype(linear_congruential_engine)>();
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:21:57: error: no matching function for call to 'gener<<expression error> >()'
gener<typename decltype(linear_congruential_engine)>();
^
main.cpp:16:6: note: candidate: template<class Eng> void gener()
void gener();
^~~~~
main.cpp:16:6: note: template argument deduction/substitution failed:
main.cpp:21:57: error: template argument 1 is invalid
gener<typename decltype(linear_congruential_engine)>();
^
为什么会这样?解决方案是什么?
最佳答案
首先, std::linear_congruential_engine
是一个类模板,你需要为它指定模板参数,例如linear_congruential_engine<std::uint_fast32_t, 16807, 0, 2147483647>
.
和linear_congruential_engine<std::uint_fast32_t, 16807, 0, 2147483647>
指的是一种类型,typename
和 decltype
是不必要的。
例如,您可以更改
gener<typename decltype(linear_congruential_engine)>();
到
gener<linear_congruential_engine<std::uint_fast32_t, 16807, 0, 2147483647>>();
关于c++ - 无法实例化模板 : template arg deduction/substitution failed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48944212/
我有这个代码。为了让它工作,我必须使用 Args&&... 而不是 Args... 或 Args&... 我注意到 args 从 & 转换为 const& 或 && 转换为 &。 Args...Arg
当我定义类时,我总是去 Class A(object): def __init__(self, arg): self.arg = arg def print_arg(s
假设我想定义两个 {Type} 类的变量。构造函数采用 1 个参数。下面两种方式是否完全等价(编译成相同的目标代码)? Type a(arg), b(arg); 和 Type a(arg); Type
(旁白:我是一名 Perl 程序员,正如您所知,这是我的第一个重要的 Java 程序。简单的术语将不胜感激。) 我有以下启动器作为编码工作: import java.lang.reflect.*; i
Math.nextUp(arg) 始终与 arg + Math.ulp(arg) 相同,还是我遗漏了什么? System.out.println( 0.5 + Math.ulp(0.5));
今天我在学习完美转发,我创建了这个代码示例 #include #include template auto toStdFun(Function&& fun, Args&&...ar
我想知道你会选择哪个选项? putStrLn (show randomNum) putStrLn $ show randomNum (putStrLn . show) randomNum 所有选项在语
我试图在 visual studio 2012 中编译一个库,它最初是用 c++ 为 visual studio 2015 编写的。我有一个错误说 'class' missing tag。 错误消息的
我在下面的代码中遇到了运行时异常ArrayIndexOutOfBoundException,行中: if ( args[0].equals("t") || args[0].equals("time")
我有以下代码 import React, { Component } from "react"; import { Accounts } from "meteor/accounts-base"; ex
这个问题已经有答案了: Difference between Arrays and 3 dots (Varargs) in java (3 个回答) 已关闭 5 年前。 受学校线性代数 I 和 II
所以我定义了一个函数: def getDistnace(self, strings, parentD, nodeName, nodeDistance): 我用它来调用: Node.getDistnac
这个问题在这里已经有了答案: subprocess.call() arguments ignored when using shell=True w/ list [duplicate] (2 个答案
我想将参数传递给 java 应用程序,但喜欢 linux 应用程序风格。 java 中的main 方法对所有参数使用一个String 数组。在 Linux 中,大多数应用程序接受如下参数:ls -l
这是我的代码片段 #include void change(int a[]){ printf("%p\n",&a); } int main(){
我需要使用 python 3.6 subprocess.run() 函数发出以下命令: gsettings set org.gnome.shell enabled-extensions "['appl
这两个函数是否有任何有意义的不同?有什么理由通常更喜欢一个而不是另一个吗? void foo(auto x, auto &... y) { /* ... */ } template void foo(
例如: def m(arg, ...args) { println "arg: $arg" println "args: $args" } m('arg', k:'v') 输出: ar
我对 Java 还很陌生。目前正在尝试将 args[] 中给出的文件名传递给此 FileReader,但当我编译时,它说找不到指定的文件。如果我对文件名进行硬编码,它就可以正常工作。这应该如何运作?
为什么这是一个语法错误??做这件事的合适方法是什么? >>> def f(*args, option=None): File "", line 1 def f(*args, option=
我是一名优秀的程序员,十分优秀!