使用模板化方法的char意外行为

时间:2018-04-06 23:54:39

标签: c++ templates variadic-templates implicit-conversion stdtuple

我正在研究一个应该由变量模板解决的问题(因为它的HW)。我缺乏理解使我无法解决以下错误。

代码是:

#include <sstream>
#include <iostream>
#include <string>
#include <vector>
#include <tuple>

template<typename ... TL>
class LazySplitResult
{
public:
    LazySplitResult(TL ...pl) :storedParams(pl ...) {       }

    void doStuff()
    {
        // invoke method with inside parameters
        useStoredTuple(storedParams, std::index_sequence_for<TL...>());
    }
    template<typename T, typename T1, typename... Targs>
    void doInsideLogic(T&& value1, Targs&&  ... Fargs)
    {
        // there is some logic
        // for example this
        std::stringstream convert("0");
        // it works for string,double,int ... other types are not supported
        // so exception would be in place
        convert >> value1;
    }

    void doInsideLogic()
    {
    }       

private:
    template<std::size_t... Is>
    void useStoredTuple(const std::tuple<TL ...>& tuple,std::index_sequence<Is...>) {
        wrapInsideLogic(std::get<Is>(tuple) ...);
    }

    void  wrapInsideLogic(TL && ... args)
    {
        doInsideLogic(args...);
    }

    std::tuple<TL ...> storedParams;
};

template<typename ...TL>
LazySplitResult<TL ...> getResult(TL && ...pl)
{
    return LazySplitResult<TL...>(pl  ...);
}

int main()
{
    std::string x;
    int y;
    double z;

    // prepares an object
    auto lazyResult=getResult(x, '.', '-', y, 'x', z , 'a');

    // let it do its thing and set unset variables
    lazyResult.doStuff();

    std::cout << "x = " << x << ", y = " << y << ", z = " << z << std::endl;

    return 0;
}

错误信息在这里

error C2664: 'void LazySplitResult<std::string &,char,char,int &,char,double &,char>::wrapInsideLogic(std::string &,char &&,char &&,int &,char &&,double &,char &&)': cannot convert argument 2 from 'const char' to 'char &&'
source_file.cpp(40): note: Conversion loses qualifiers
source_file.cpp(18): note: see reference to function template instantiation 'void LazySplitResult<std::string &,char,char,int &,char,double &,char>::useStoredTuple<0,1,2,3,4,5,6>(const std::tuple<std::string &,char,char,int &,char,double &,char> &,std::integer_sequence<_Ty,0,1,2,3,4,5,6>)'

rextester here复制。

HW的主要部分是解析公式并将结果保存在如下变量中:

// declare variables and initialize class with formula

parse(x, '.', '-', y, 'x', z , 'a');   
std::cout << "x = " << x << ", y = " << y << ", z = " << z << std::endl;

代码执行相同的操作,但它以惰性方式执行,因此参数需要存储在元组中以供以后使用。

我尝试实现相同的逻辑,除了懒惰,没有使用元组和类成功。可以观察到here。没有错误描述转换错误。

你能帮帮我吗?我完全迷失了。入口方法调用是相同的,处理参数的可变参数模板方法具有相同的参数...只有区别似乎是元组和类之间。

2 个答案:

答案 0 :(得分:1)

首先,T1功能模板中有一个无用的模板参数doInsideLogic。删除它。

wrapInsideLogic的参数不是转发参考,因为TL已知且未推断。其参数std::get<Is>(tuple)的类型为const TL&,因为tuple的类型为const std::tuple<TL...>&,因此与参数类型TL&&不匹配。要解决此问题,有两种选择:

  1. 使用转发参考,即

    template <typename... Targs>
    void wrapInsideLogic(Targs&&... args)
    {
        doInsideLogic(std::forward<Targs>(args)...);
    } 
    
  2. 使用const的引用,即

    void wrapInsideLogic(const TL&... args)
    {
        doInsideLogic(args...);
    } 
    

答案 1 :(得分:0)

不确定...您是否请求第一个链接引用的代码或第二个链接引用的代码的帮助?

我想是第二个代码,所以我建议按如下方式重新排序函数的定义。

首先是递归的基础案例

void myFunc ()
 { std::cout << "end" << std::endl; }

其次,myFunc()

的递归版本
template <typename T, typename ... Targs>
void myFunc (T && value1, Targs && ... Fargs)
 {
   // there should be additional logic 
   // if value1 is char then skip it. But it was intentionally ommited
   std::cout << " do" << std::endl;

   const char* parsedValue = "0";
   std::stringstream convert(parsedValue);
   // cast current value according to thing.
   convert >> value1;

   myFunc(Fargs ...);
 }

第三,test()

template <typename ... Targs>
void test (Targs && ... args)
 { myFunc(args...); }

现在你的代码应该编译。

如果你先写test(),那么递归myFunc()和最后一个案例myFunc()你有(1)test()来电myFunc()未申报和(2)递归myFunc()在未申报时调用基础案例myFunc()