首页 > TAG信息列表 > stuarray

uni-app v-for中key的作用

v-for中key可以使组件中的数据绑定唯一。 比如以下实例 <view> <view v-for="(stu,index) in stuArray" :key="stu.id"> <view> <checkbox value="false"/> {{&quo

结构体指针

int main() {//主函数返回值为整型     struct student     {         string name;         int age;         int score;     };     //2.创建结构体数组     struct student stuarray[3] =     {         {"张三",18,100},   

C++结构体数组

结构体数组 作用:将自定义的结构体放入到数组中方便维护 语法:struct 结构体名 数组名[元素个数]={{},{},...{}} 代码示例: #include <iostream> #include <string> using namespace std; //结构体数组 //1.定义结构体 struct Student {        //姓名