是否可以在其成员函数中使用类模板?

时间:2017-03-25 17:52:58

标签: c++ templates

我的班级是参数化的。在其中一种方法中,我必须创建一个临时数组,但我不知道如何将类的大小模板传递给成员函数。这就是我尝试的方式:

#include <array>

template<unsigned int N>
class MyClass{
    std::array<int,N> m_data;
  public:    
    void myFunc(){
        std::array<int,N> tempArray;
    }
};


int main(){
    MyClass<5> obj;
    obj.myFunc();
}

修改 构建日志:

C:\Windows\system32\cmd.exe /C ""C:/Program Files/mingw-w64/x86_64-6.3.0-win32-seh-rt_v5-rev1/mingw64/bin/mingw32-make.exe" -j6 SHELL=cmd.exe -e -f  Makefile"
"----------Building project:[ hatizsak_konyv - Debug ]----------"
mingw32-make.exe[1]: Entering directory 'E:/progi/c++/CodeLite/Other/algoritmusok/dinamikus_programozas/hatizsak_konyv'
"C:/Program Files/mingw-w64/x86_64-6.3.0-win32-seh-rt_v5-rev1/mingw64/bin/g++.exe"  -c  "E:/progi/c++/CodeLite/Other/algoritmusok/dinamikus_programozas/hatizsak_konyv/main.cpp" -g -O0 -Wall  -o ./Debug/main.cpp.o -I. -I.
E:/progi/c++/CodeLite/Other/algoritmusok/dinamikus_programozas/hatizsak_konyv/main.cpp: In instantiation of 'void MyClass<N>::myFunc() [with unsigned int N = 5u]':
E:/progi/c++/CodeLite/Other/algoritmusok/dinamikus_programozas/hatizsak_konyv/main.cpp:15:16:   required from here
E:/progi/c++/CodeLite/Other/algoritmusok/dinamikus_programozas/hatizsak_konyv/main.cpp:8:27: warning: unused variable 'tempArray' [-Wunused-variable]
         std::array<int,N> tempArray;
                           ^~~~~~~~~
"C:/Program Files/mingw-w64/x86_64-6.3.0-win32-seh-rt_v5-rev1/mingw64/bin/g++.exe" -o ./Debug/hatizsak_konyv @"hatizsak_konyv.txt" -L.
mingw32-make.exe[1]: Leaving directory 'E:/progi/c++/CodeLite/Other/algoritmusok/dinamikus_programozas/hatizsak_konyv'
====1 errors, 1 warnings====

1 个答案:

答案 0 :(得分:3)

模板参数在模板类的方法中可见;代码是正确的。

根本没有错误,也没有提供的代码示例,也没有构建日志。构建日志中的消息只是一个警告(在为其提供上下文之前有行),这正确地警告您该变量未被使用的事实,根据提供的-Wall选项命令行。除此之外,代码compiles fine,在ideone和我的机器上(它提供完全相同的警告,而不是错误)。

[matteo@teolapkubuntu /tmp]$ g++ -Wall -Wextra -std=c++11 stuff.cpp 
stuff.cpp: In instantiation of ‘void MyClass<N>::myFunc() [with unsigned int N = 5u]’:
stuff.cpp:15:16:   required from here
stuff.cpp:8:27: warning: unused variable ‘tempArray’ [-Wunused-variable]
         std::array<int,N> tempArray;
                           ^~~~~~~~~

&#34; 1错误&#34;构建日志末尾的消息只是CodeLite误解编译器输出;有an open bug about it,其条件与您的相似。