struct

異なる変数をまとめ、1つの変数にした構造体。

関数で用いることによって多くの値を一度に返したい場合などに複雑さを軽減します。


Example

struct Name
{
     string First;
     string Last;
};

See Also

Data Types



JP team: marshall

Send comments on this topic.