返回元件我需要從一個結構數組返回一個元素。我得到的錯誤,所以我想知道如何做到這一點:從一個結構數組
-(struct Point3D)getMyColor
{
struct Point3D
{
int x;
int y;
int z;
};
struct Point3D points[15] =
{
{204, 74, 110},
{118, 56, 198},
{175, 122, 231}, // I WANT TO RETURN THIS ONE TO THE CALLER
{3, 197, 47},
....
}
return WHAT? // (points[4] give error)
}
你確定這是C代碼?不是Objective-C? –
你應該發佈你正在尋找幫助的代碼。正如你所說的,「點[2]」實際上是對@Palec的回答評論的點[19],那麼有人可以幫助你嗎? – Thanushan