这个类(class)
class CategoriesModel{
String imgUrl;
String categoriesName;
}
该功能-
List<CategoriesModel> getCategories(){
List<CategoriesModel> categories = new List();
CategoriesModel categoriesModel = new CategoriesModel();
//
categoriesModel.imgUrl ="";
categoriesModel.categoriesName = "";
categories.add(categoriesModel);
categoriesModel=new CategoriesModel();
return categories;
}
我没有得到这个代码
请以简单的方式对此进行解释。
提前致谢。
最佳答案
有更多关于您为什么需要/使用此功能的背景信息会很好。
它只是返回一个带有单个对象且为空的CategoriesModel
列表。categoriesModel.imgUrl =""; categoriesModel.categoriesName = ""; categories.add(categoriesModel);
这个新对象没有多大意义:categoriesModel=new CategoriesModel();
关于flutter - 这段代码 flutter 朔迷离的目的是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/62477465/