类型初始化 / 结构

#include <iostream>
using namespace std;

struct Size {
    int width, height;
};

struct Point {
    int top, left;
};

struct Rectangle {
    Size size;
    Point point;
};

Rectangle rect = {{1010}, {55}};

cout << rect.size.height;