Visual C++ .NET/Collections/Array Pointer

Материал из .Net Framework эксперт
Версия от 12:05, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Declare a Pointer to an Array

 
#include "stdafx.h"
#include <typeinfo.h>
#using <mscorlib.dll>
using namespace System;
struct Rectangle {
    int x,y,w,h;
};
int main(void)
{
    Rectangle rects[5];
    rects[0].x = 10;
    rects[0].y = 20;
    rects[0].w = 50;
    rects[0].h = 100;
    Console::WriteLine(rects->x);
    return 0;
}