gpt4 book ai didi

c++ - Visual C++ 数组文字

转载 作者:太空宇宙 更新时间:2023-11-04 14:13:33 24 4
gpt4 key购买 nike

我在 Windows 中工作,我想通过 netbeans 创建我的程序,所以我需要通过 cygwin 使用 linux 编译器。到目前为止,我已经能够像这样使用 int 的文字数组:

int x[6] = {1, 2, 3, 4, 5, 6}

或在方法中

methodName({1, 2, 3, 4, 5, 6})

我最近改用 visual studio,但不允许我这样做。有替代方案吗?

最佳答案

int x[6] = {1, 2, 3, 4, 5, 6}

MSVC2010已经支持这种语法

methodName({1, 2, 3, 4, 5, 6})

但这不被支持。如上所述,它仅对“int const (&)[6]”函数参数有意义。

相反,您可以使用以下语法:

methodName(make_array(1,2,3,4,5,6));

Example implementation :

#include <iostream>
#include <ostream>

using namespace std;


template<typename T,unsigned size>
struct Array
{
typedef T type[size];
mutable type data;
Array()
{
cout << "Array::Array" << endl;
}
~Array()
{
cout << "Array::~Array" << endl;
}
};

template<typename T> inline
typename Array<T,1>::type &make_array(const T &p1,const Array<T,1> &aux=Array<T,1>())
{
aux.data[0]=p1;
return aux.data;
}

template<typename T> inline
typename Array<T,2>::type &make_array(const T &p1,const T &p2,const Array<T,2> &aux=Array<T,2>())
{
aux.data[0]=p1;
aux.data[1]=p2;
return aux.data;
}

template<typename T> inline
typename Array<T,3>::type &make_array(const T &p1,const T &p2,const T &p3,const Array<T,3> &aux=Array<T,3>())
{
aux.data[0]=p1;
aux.data[1]=p2;
aux.data[2]=p3;
return aux.data;
}

// ...

void test_array(int (&p)[3])
{
cout << p[0] << " " << p[1] << " " << p[2] << endl;
}

void test_ptr(int *p)
{
cout << p[0] << " " << p[1] << " " << p[2] << endl;
}

int main(int argc,char *argv[])
{
test_array(make_array(33,22,11));
test_ptr(make_array(33,22,11));
return 0;
}

或者,with help of Boost.Preprocessor :

#include <iostream>
#include <ostream>
using namespace std;

// ______________________________________________________________

template<typename T,unsigned size>
struct Array
{
typedef T type[size];
mutable type values;
Array()
{
cout << "Array::Array" << endl;
}
~Array()
{
cout << "Array::~Array" << endl;
}
};

#include <boost/preprocessor/iteration/local.hpp>
#include <boost/preprocessor/repetition/enum.hpp>
#include <boost/preprocessor/repetition/repeat.hpp>

#define MAKE_ARRAY_PP_MAX_ARG_COUNT 16

#define MAKE_ARRAY_PP_PARAM_LIST(z, n, data) const T & BOOST_PP_CAT(p, n)
#define MAKE_ARRAY_PP_PARAM_ASSIGN(z, n, data) aux.values[n] = BOOST_PP_CAT(p, n);

#define BOOST_PP_LOCAL_MACRO(n) \
template<typename T> inline \
typename Array<T,n>::type &make_array(BOOST_PP_ENUM(n, MAKE_ARRAY_PP_PARAM_LIST, _) , const Array<T,n> &aux=Array<T,n>()) \
{ \
BOOST_PP_REPEAT(n, MAKE_ARRAY_PP_PARAM_ASSIGN, _) \
return aux.values; \
} \
/**/
#define BOOST_PP_LOCAL_LIMITS (1, MAKE_ARRAY_PP_MAX_ARG_COUNT)
#include BOOST_PP_LOCAL_ITERATE()

// ______________________________________________________________

void test_array(int (&p)[3])
{
cout << p[0] << " " << p[1] << " " << p[2] << endl;
}

void test_ptr(int *p)
{
cout << p[0] << " " << p[1] << " " << p[2] << endl;
}

int main(int argc,char *argv[])
{
test_array(make_array(33,22,11));
test_ptr(make_array(33,22,11));
make_array(33,22,11,00,55,44,66);
make_array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16);
return 0;
}

关于c++ - Visual C++ 数组文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13031873/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com