1.place restrictions on;
curtail drinking in school
2.place under restrictions; limit access to;
This substance is controlled
3.place limits on (extent or access);
restrict the use of this parking lot
4.make more specific;
qualify these remarks
简介 restrict是c99标准引入的,它只可以用于限定和约束指针,并表明指针是访问一个数据对象的唯一且初始的方式。即它告诉编译器,所有修改该指针所指向内存中内容的操作都必须通过该指针来修改,而不能通过其它途径锛埰渌淞炕蛑刚腼級来修改;这样做的好处是,能帮助编译器进行更好的优化代码,生成更有效率的汇编代码。如 int *restrict ptr, ptr 指向的内存单元只能被 ptr 访问到,任何同样指向这个内存单元的其他指针都是未