C++编程调试秘笈----读书笔记(3)(三)

2014-11-24 08:38:17 · 作者: · 浏览: 2
nclude "scpp_assert.h"
#include "iostream"
#include "scpp_vector.h"
#include "scpp_array.h"
#include "scpp_matrix.h"
#include "algorithm"
#define SIZE 10
int _tmain(int argc, _TCHAR* argv[])
{
scpp::matrix scppMatrix(2, 2);
scppMatrix(0, 0) = 1;
scppMatrix(0, 1) = 2;
scppMatrix(1, 0) = 3;
scppMatrix(1, 1) = 4;
scppMatrix(6, 6) = 4;
std::cout << scppMatrix << std::endl;
return 0;
}