用法 (1)作用域限定符,当在类体中直接定义函数时,不需要在函数名字的前面加上类名,但是在类体外实现函数定义的时候,必须加上类名并且加上作用域限定符。Student::Display(); (2)静态数据成员既可以通过对象名引用,也可以通过类名加::来引用, class Test{public:Display();private:static int a;};Test::a; (3)静态成
一、循环 for (String s : SomeString){System.out.println(str); } 二、三元运算符 int i = a>b?3:1 三、跳转标记 outer:for(int i=0;i<5;i++){for(int i=0;i<5;i++){if(i==3){continue outer;}}} 四、Switch switch(i){ca
tar解压文件名带冒号的文件,需要加上–force-local。 否则,会报错:cannot connect to xx:resolve failed 原因:文件名含有冒号的文件,tar会认为是远端机器上的文件。 man tar如下: –force-local archive file is local even if it has a colon
统计txt文件中出现的所有中文字符和标点符号的数量,每一个字符及数量之间用冒号分隔。 思路:借助字典存储,如果是英文字符跳过 with open("C:/Users/Lenovo/Desktop/1.txt","r",encoding="utf-8") as f1:txt=f1.read()d={}for c in txt:if (c<'a' or c>'z')and(c<'A' or