1

私は Windows で作業しており、netbeans を介してプログラムを作成したかったため、cygwin を介して Linux コンパイラを使用する必要がありました。今まで、int次のように s のリテラル配列を使用できました。

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

またはメソッドで

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

最近、ビジュアルスタジオに変更しましたが、これを行うことはできませんでした. 代替手段はありますか?

4

1 に答える 1

0
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));

実装例

#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;
}

または、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;
}
于 2012-10-23T14:49:06.290 に答える