📄 itkfixedarraytest.cxx
字号:
/*=========================================================================
Program: Insight Segmentation & Registration Toolkit
Module: $RCSfile: itkFixedArrayTest.cxx,v $
Language: C++
Date: $Date: 2003/09/10 14:30:09 $
Version: $Revision: 1.8 $
Copyright (c) Insight Software Consortium. All rights reserved.
See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#if defined(_MSC_VER)
#pragma warning ( disable : 4786 )
#endif
#include <iostream>
#include "itkFixedArray.h"
// Explicit instantiation to make sure all methods are compiled.
template class itk::FixedArray<float, 3>;
void Set_c_Array(int x[3])
{
x[0] = 1;
x[1] = 2;
x[2] = 3;
}
void Print_Array(itk::FixedArray<int, 3> x, std::ostream& os)
{
os << '{' << x[0] << ',' << x[1] << ',' << x[2] << '}' << std::endl;
}
void Print_c_ArrayConst(const int x[3], std::ostream& os)
{
os << '{' << x[0] << ',' << x[1] << ',' << x[2] << '}' << std::endl;
}
void Print_Array5(itk::FixedArray<int, 5> x, std::ostream& os)
{
os << '{' << x[0] << ',' << x[1] << ',' << x[2] << ','
<< x[3] << ',' << x[4] << '}' << std::endl;
}
int itkFixedArrayTest(int, char* [] )
{
// Test out many combinations of using c-style arrays and FixedArray
int c_Array1[3] = {0,0,0};
Set_c_Array(c_Array1);
Print_Array(c_Array1, std::cout);
Print_c_ArrayConst(c_Array1, std::cout);
int c_Array2[3] = {0,0,0};
Print_Array(c_Array2, std::cout);
int array3Init[3] = {4,4,4};
itk::FixedArray<int, 3> array3 = array3Init;
Print_Array(array3, std::cout);
Print_c_ArrayConst(array3.GetDataPointer(), std::cout);
Set_c_Array(array3.GetDataPointer());
Print_Array(array3, std::cout);
itk::FixedArray<int, 3> array4;
array4.Fill(0);
Print_Array(array4, std::cout);
// Test operator!= and operator==
if ( array4 != array4 ) return 1; //should be equal
if ( !(array4 == array4) ) return 1; //should be equal
// Test Get/Set element
const unsigned int n = 20;
itk::FixedArray< unsigned int, n > array20;
for(unsigned int i=0; i<n; i++)
{
array20.SetElement(i,i);
}
for(unsigned int k=0; k<n; k++)
{
if( array20.GetElement(k) != k )
{
std::cerr << "Set/Get element test failed" << std::endl;
return EXIT_FAILURE;
}
}
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -