我正在编写一个民意调查程序,我使用“Partito”类,
#pragma once
ref class Partito
{
protected:
//System::String ^nome;
int IndexP; //Index Partito
float MaxConsenso;
float consensoTot;
int consenso;
//workaround according to Hans Passant:
// char Risposta[5];
array<int> ^Risposte;// Risposte means anwers.
//workaround end
System::Drawing::Color colore;
public:
Partito(
int _IndexP,
float _consensoTot, int consenso
array<int> ^_Risposte // workaround
); //costruttore
void CalcCons(int consenso);
float GetConsensoTot(void);
};
};
现在定义:
#include "StdAfx.h"
#include "Partito.h"
//Partito::Partito(void)
Partito::Partito(
int _IndexP,
float _consensoTot,
int consenso
//workaround start
array<int> ^_Risposte //workaround
//workaround end
)
{
//char Risposta[5];
//workaround start
Risposte=gcnew array<int>(5); //workaround
Risposte=_Risposte; //workaround
//workaround end.
IndexP =_IndexP;
consensoTot = _consensoTot;
MaxConsenso = 12;
}
void Partito::CalcCons(int consenso)
{
consensoTot+=(consenso*100)/MaxConsenso;
}
float Partito::GetConsensoTot(void)
{
return consensoTot;
}
现在,通过解决方法,编译器可以毫无问题地接受它。现在,在文件“Form1h”中,我可以毫无问题地初始化数组:
Form1(void)
{
InitializeComponent();
//
//TODO: aggiungere qui il codice del costruttore.
//
我定义了一个对象,以这种方式初始化数组。
Partito^ ExampleParty = gcnew Partito(0,0,0,gcnew array<int>{0,1,2,2,0});
.
.
.
}