<bdo id='Ea9jp'></bdo><ul id='Ea9jp'></ul>

    1. <i id='Ea9jp'><tr id='Ea9jp'><dt id='Ea9jp'><q id='Ea9jp'><span id='Ea9jp'><b id='Ea9jp'><form id='Ea9jp'><ins id='Ea9jp'></ins><ul id='Ea9jp'></ul><sub id='Ea9jp'></sub></form><legend id='Ea9jp'></legend><bdo id='Ea9jp'><pre id='Ea9jp'><center id='Ea9jp'></center></pre></bdo></b><th id='Ea9jp'></th></span></q></dt></tr></i><div id='Ea9jp'><tfoot id='Ea9jp'></tfoot><dl id='Ea9jp'><fieldset id='Ea9jp'></fieldset></dl></div>
      <tfoot id='Ea9jp'></tfoot>

        <small id='Ea9jp'></small><noframes id='Ea9jp'>

      1. <legend id='Ea9jp'><style id='Ea9jp'><dir id='Ea9jp'><q id='Ea9jp'></q></dir></style></legend>

        C++ 如何使用 std::bind/std::function 引用模板函数

        C++ How to Reference Templated Functions using std::bind / std::function(C++ 如何使用 std::bind/std::function 引用模板函数)
        <tfoot id='l9uag'></tfoot><legend id='l9uag'><style id='l9uag'><dir id='l9uag'><q id='l9uag'></q></dir></style></legend>

          • <small id='l9uag'></small><noframes id='l9uag'>

            <i id='l9uag'><tr id='l9uag'><dt id='l9uag'><q id='l9uag'><span id='l9uag'><b id='l9uag'><form id='l9uag'><ins id='l9uag'></ins><ul id='l9uag'></ul><sub id='l9uag'></sub></form><legend id='l9uag'></legend><bdo id='l9uag'><pre id='l9uag'><center id='l9uag'></center></pre></bdo></b><th id='l9uag'></th></span></q></dt></tr></i><div id='l9uag'><tfoot id='l9uag'></tfoot><dl id='l9uag'><fieldset id='l9uag'></fieldset></dl></div>

                <bdo id='l9uag'></bdo><ul id='l9uag'></ul>
                    <tbody id='l9uag'></tbody>
                1. 本文介绍了C++ 如何使用 std::bind/std::function 引用模板函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  如果您有模板类或模板函数(或两者的组合),您如何绑定该函数(保留模板类型参数)?

                  If you have a templated class or a templated function, (or combination of the two), how do you bind that function, (preserving the template type parameter)?

                  我在下面的帖子中获得了一些有关基本语法的帮助,用于绑定具有显式模板类型参数的函数,但在此过程中失去了提供模板类型参数的能力.

                  I was given some help about the basic syntax in a post below, to bind to functions with explicit template type parameters, but lose the ability to provide template type parameters in the process.

                  是否有可能让它工作,以便在将来的调用中仍然可以提供模板类型参数?

                  Is it possible to get this to work so that it is still possible to provide template type parameters with future calls?

                  清理了很多这段代码,但显然无法编译,因为我找不到正确的语法,(有没有办法做到这一点)?

                  Cleaned up this code a lot, but it obviously won't compile because I can't find the correct syntax, (are there any ways of doing this)?

                  删除了矢量"要求以简化此操作:

                  Removed the "vector" requirement to simplify this:

                  感谢您的帮助!

                  #include <functional>
                  #include <vector>
                  #include <string>
                  
                  /***************************************/
                  template <typename CommandTemplateType>
                  class Storage
                  {
                    public:
                     // No idea how to define this vector to allow Template Parameters
                     // static std::vector<std::function<void<ParameterTemplateType>
                     //     (std::shared_ptr<ParameterTemplateType>)>> Functions;
                  
                     // I really don't need the collection, a single member would kick start my research:
                     static std::function<void<ParameterTemplateType>(std::shared_ptr<ParameterTemplateType>)> Function;
                  
                    template <typename ParameterTemplateType>
                    static void Execute(ParameterTemplateType parameter)
                    {
                       // Look up index, or loop through all.. 
                       // I am trying to invoke the bound function with a template param:
                       // Functions[index]<ParameterTemplateType>(parameter);
                       // preferably, just:  
                       Function<ParameterTempalteType>(parameter); 
                    }
                  };
                  
                  /***************************************/
                  template <typename TemplateType>
                  class MyClass
                  {
                  
                     template <typename ParameterTemplateType>
                     void MyFunction(ParameterTemplateType myParameter)
                     {
                       // Do something; 
                     }
                  
                     MyClass()
                     {
                        std::string parameter = L"Test String";
                  
                        // Do not know how to include the 
                        // template<typename ParameterTemplateType> definition to bind call.
                        // Storage::Functions.push_back(
                        //     std::bind(&MyClass::MyFunction<ParameterTemplateType>,
                  //        this, std::placeholders::_1));
                  
                       // Or just something like:
                       Storage::Function = std::bind(&MyClass::MyFunction<ParameterTemplateType>,
                                               this, std::placeholders::_1));
                  
                        /***************************************/
                        // Call the bound function with an explicit parameter somehow:
                        std::string parameter = L"Test String";          
                        Storage::Execute<std::string>(parameter);
                  
                  
                     }
                  };
                  

                  推荐答案

                  关键问题是在 C++11 中你不能做这样的事情:

                  The key issues is that in C++11 you cannot do something like:

                  // Doesn't compile
                  template <typename TemplateType>
                  static std::function<void(std::shared_ptr<TemplateType>)> Function;
                  

                  可以对类和函数进行模板化,但不能对成员属性进行模板化.

                  Classes and Functions can be templated, but not member properties.

                  魔法"是:

                  /*******************************************************************/
                  // Define a Function Pointer in a Container
                  class Storage
                  {
                     template <typename TemplateType>
                     struct FunctionContainer {
                         static std::function<void(std::shared_ptr<TemplateType>)> Function;
                     };
                  };
                  /*******************************************************************/
                  // Initialize FunctionContainer's Static Function Pointer if using static pointer.
                  template <typename TemplateType>
                  std::function<void(std::shared_ptr<TemplateType>)> Storage
                      ::FunctionContainer<TemplateType>::Function;
                  

                  然后您可以将模板化函数绑定到此函数,例如:

                  You can then Bind a templated function to this function like:

                  // Bind Function Pointer in Container to a Local Function
                  class MyClass
                  {
                     template <typename TemplateType>
                     void MyFunction(std::shared_ptr<TemplateType> parameter)
                     {
                       // Do something.
                       // You can make this templated or non-templated.
                     }
                     MyClass()
                     {
                       // If you really want, you can templatize std::string in the following:
                       Storage::FunctionContainer<std::string>::Function 
                         = std::bind(&MyFunction<std::string>, this, std::placeholders::_1);
                     }
                  }
                  

                  您可以调用所有这些并提供一个模板化的类型参数,如下所示:

                  And you can invoke all of this and provide a templated type parameter like so:

                  //Invocation
                  std::shared_ptr<std::string> parameter;
                  parameter->get() = "Hello World".
                  Storage::FunctionContainer<std::string>::Function(parameter);
                  

                  这篇关于C++ 如何使用 std::bind/std::function 引用模板函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Is Type(::x); valid?(是类型(::x);有效的?)
                  Difference between an inline function and static inline function(内联函数和静态内联函数的区别)
                  Compilation fails randomly: quot;cannot open program databasequot;(编译随机失败:“无法打开程序数据库)
                  Too many initializers error for a simple array in bcc32(bcc32 中的简单数组的初始值设定项过多错误)
                  No Member named stoi in namespace std(命名空间 std 中没有名为 stoi 的成员)
                  Error using a constexpr as a template parameter within the same class(在同一个类中使用 constexpr 作为模板参数时出错)
                2. <legend id='35J8J'><style id='35J8J'><dir id='35J8J'><q id='35J8J'></q></dir></style></legend>

                    1. <i id='35J8J'><tr id='35J8J'><dt id='35J8J'><q id='35J8J'><span id='35J8J'><b id='35J8J'><form id='35J8J'><ins id='35J8J'></ins><ul id='35J8J'></ul><sub id='35J8J'></sub></form><legend id='35J8J'></legend><bdo id='35J8J'><pre id='35J8J'><center id='35J8J'></center></pre></bdo></b><th id='35J8J'></th></span></q></dt></tr></i><div id='35J8J'><tfoot id='35J8J'></tfoot><dl id='35J8J'><fieldset id='35J8J'></fieldset></dl></div>

                        <small id='35J8J'></small><noframes id='35J8J'>

                          • <bdo id='35J8J'></bdo><ul id='35J8J'></ul>

                          • <tfoot id='35J8J'></tfoot>

                              <tbody id='35J8J'></tbody>