结构体内引用数组

来源:互联网 发布:excel文件恢复软件 编辑:程序博客网 时间:2024/05/01 06:46
struct Student
{
public:
    Student(UINT32 (&usersid)[10], INT32 &l)  :
        usersid_(usersid), len_(l)
    {
        len_ = 0;
    }


    ~Student()
    {

    }

private:
    INT32 &len_;
    UINT32 (&usersid_)[10];
};
0 0