C ++ / CLIでは、ドキュメントに従って、プロパティを次のように定義できます。
public ref class Vector sealed {
public:
property double x {
double get() {
return _x;
}
void set( double newx ) {
_x = newx;
}
} // Note: no semi-colon
};
ただし、プロパティを次のように単純にプロトタイプ化すると、次のようになります。
public ref class Vector sealed {
public:
property double x {
double get() ;
void set( double newx );
} // Note: no semi-colon
};
これらのプロトタイプの実装をどのように作成しますか?