Visual C++ .NET/Collections/Array Pointer — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 12:05, 26 мая 2010

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;
}