打卡。Java:使用 size() 方法。例如:int length = myList.size();

Python:使用 len() 函数。例如:length = len(myList)

C#:使用 Count 。例如:int length = myList.Count;
展开
评论