- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我为 T
类型的矩阵创建了一个矩阵模板类.我收到一个链接器错误和一条警告:Instantiation of variable 'ndmatrix<unsigned int>::Subscriptable::_data' required here, but no definition is available
.
模板在单独的标题中定义:
ndmatrix.h:
#ifndef ndmatrix_h
#define ndmatrix_h
#include <vector>
#include <functional>
#include <algorithm>
//Generic matrix class to hold the table levels of type T
template<class T>
class ndmatrix{
public:
size_t R; //rows
size_t C; //cols
//Hack to use [][] operator on std::vector
class Subscriptable{
public:
//Default constructor
Subscriptable(){};
Subscriptable(int idx, size_t R, size_t C) : _idx(idx), _R(R), _C(C) {
for (int i = 0; i<_C*_R; i++) {
_data.push_back(0);
}
};
Subscriptable setIdx(int i){
this->_idx = i;
return *this;
}
//This is [] operator for ndmatrix::Subscriptable
T operator[](int index) {
return _data[_C *_idx + index];
}
auto addElement(T e, int i, int j){
return _data.insert( _data.begin() + _C*i + j, e);
};
auto data() { return _data; };
private:
size_t _R; //rows
size_t _C; //cols
int _idx;
static std::vector<T> _data; <== Warning: Instantiation of variable 'ndmatrix<unsigned int>::Subscriptable::_data' required here, but no definition is available.
};
Subscriptable _s;
//This is [] operator for ndmatrix
Subscriptable operator[](int idx){
return _s.setIdx(idx);
};
//Constructors
ndmatrix();
ndmatrix(int __C, int __R);
//Member functions
void addRow(std::vector<T> row);
void print_to_console( std::function<void(T)> printer ); //printer is used to print one element of type T to the console.
};
template <class T>
ndmatrix<T>::ndmatrix(){
_s = Subscriptable();
};
template <class T>
ndmatrix<T>::ndmatrix(int __C, int __R){
_s = Subscriptable();
for (int i=0; i<__C*__R; i++) {
_s.push_back(0);
}
};
template <class T>
void ndmatrix<T>::addRow(std::vector<T> row){
this->_s.data().insert( _s.data().end() , row.begin(), row.end() );
};
template <class T>
void ndmatrix<T>::print_to_console( std::function<void(T)>printer ) {
for(int i=0; i<R; i++){
std::cout << std::endl;
for (int j=0; j<C; j++) {
printer( (*this)[i][j] );
}
}
}
#endif /* ndmatrix_h */
然后我尝试在 main.cpp:
中使用它
#include <iostream>
#include <fstream>
#include <sstream>
#include "ndmatrix.h"
typedef unsigned int level_t;
//Read table of levels from file into a matrix
void read_matrix(ndmatrix<level_t>* const mat, const char* filename){
std::ifstream fileInput(filename);
int rows = 0;
while (fileInput) {
std::string line;
std::getline(fileInput, line, '\n');
std::stringstream strstream(line);
std::vector<level_t> row;
level_t level;
int cols=0;
while ( strstream >> level ) {
row.push_back(level);
cols++;
}
mat->addRow(row);
rows++;
mat->C = cols;
mat->R = rows;
//debug
std::cout << line << std::endl;
}
};
int main(int argc, const char * argv[]) {
//tests
ndmatrix<level_t> matrix;
read_matrix(&matrix, "table.dat");
// insert code here...
std::cout << "Hello, World!\n";
return 0;
}
尝试构建时,我收到上述警告和链接器错误:
clang: error: linker command failed with exit code 1 (use -v to see invocation)
最佳答案
您已经编写了静态成员变量 _data
的声明,但跳过了定义。
template< typename T > typename ::std::vector< T > ndmatrix< T >::Subscriptable::_data;
更新:在 C++17 中,可以使用 inline
静态变量,这些变量可以在类中初始化并且不需要在类外单独定义:
static inline std::vector<T> _data{};
关于C++ 模板 : 'Instantiation of variable required here, but no definition is available' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43439862/
我刚遇到 MSVC(版本 12 更新 5)的问题: 如果模板函数具有通过 SFINAE 禁用的重载,则显式实例化模板函数会失败。但是,调用该函数(从而隐式实例化它)是有效的。 示例代码: #inclu
我正在阅读一本关于 DI 的书,该书总是谈论 DI 框架“实例化对象图”。为什么这样说而不是“实例化对象”? 最佳答案 对象图由保存彼此引用的对象组成。在这种情况下,图的另一个名称是网络。 如果 IO
一个类Customers实例化许多其他类(例如CustomersFromMysql、CustomersFromPostgeSQL),所有查询数据库都返回客户名称。现在,这些客户名称返回为例如 name
当我尝试调用 listenEventReducer 时,出现了这个奇怪的错误。该方法知道类型,但仍然不确定我哪里出错了。 import 'package:test/test.dart'; enum O
我正在尝试使用 org.hibernate.Interceptor.instantiate() 来拦截实例化(显然)并使用默认构造函数之外的构造函数手动实例化特定对象。如果要阅读此方法的 JavaDo
public class TestingClass { public static void main(String[] args) { int numberRooms = 6
为什么 C++ 以这样的方式创建,如果您有一个类 A 并声明一个类型 A 的数组,那么整个数组将填充使用该类的默认构造函数实例化的对象? 最佳答案 因为当您创建一个给定大小的数组时,数组的每个元素都必
考虑下面的例子 template struct S { A a; void foo() {} }; template void bar() { S *p = 0; } templat
Note that code is instantiated only for member functions that are called. For class templates, membe
当我尝试运行这段代码时: import java.io.*; import java.util.*; public class TwoColor { public static void ma
每当我尝试在 Unity 3D 中实例化粒子系统时,命令都会定位粒子但不会播放/运行动画。 这是我的代码 GameObject impactGO = Instantiate(impactEffect,
我使用以下代码在 verilog 中实例化二维内存 reg [15:0] data_pattern_even [3:0] = {16'hFFFF,16'hFFFF,16'hFFFF,16'hFFFF
假设我获得了我作为 String 创建的类的名称。 .如何使用该字符串中包含的名称实例化类?我知道它将派生自某个父类,但实际类会有所不同。 最佳答案 var instance : MyClass =
python 的 attrs 包提供了一种在实例化时验证传递的变量的简单方法 (example taken from attrs page): >>> @attr.s ... class C(obje
我收到 java 空指针异常。我无法解决它。我已在 testbase 类中初始化驱动程序,并希望在我的 Testing_TVO 类中使用相同的驱动程序 这是我的测试基类 public class te
我对 Java 编程还比较陌生,可能错过了一些明显的东西,所以请耐心等待。 我正在创建一个程序,该程序使用 Swing API 和 JDesktopPane 来创建 GUI。主屏幕上有一个按钮,上面写
python 的 attrs 包提供了一种在实例化时验证传递的变量的简单方法 (example taken from attrs page): >>> @attr.s ... class C(obje
C++ 模板中的“延迟实例化”是什么意思? 最佳答案 延迟实例化是指直到第一次使用对应的实体时才实例化模板。例如,您有一个模板化函数: template void YourFunction() {
当我阅读 spring 教程时,我发现了这样的内容: LocalChangeInterceptor localChangeInterceptor; localChangeInterceptor = n
我正在实现 unforgettable factory .一切正常,但有一件事:类(class)有时没有注册。 我认为关键部分是 Registrar::registered成员。如果使用它,“真正有趣
我是一名优秀的程序员,十分优秀!