摘要:
虚方法 public class Animal { // 虚方法 public virtual void MakeSound() { Console.WriteLine("动物发出声音"); } } public class Dog : Animal { // 重写虚方法 public overri 阅读全文
摘要:
获得/bin/log文件夹下的所有文件,mv oldname.txt newname.txt重新命名文件名 DIR="/path/to/files" sufix=".txt" for file in $DIR/*.log ; do if [ -f "$file" ]; then mv "$file" 阅读全文