Linux shell 脚本,循环解析命令行传入的所有参数,并按照不同的传参实现对不同的 java jar文件 进行测试执行。
[rootlocalhost demo]# cat connTest.sh
#!/bin/bash# Linux shell for qftool java jar test# modes
DEFAULT_MODE2jarfiles[1]common-1.0…
一、子类和父类的关系 public class Program{static void Main(string[] args){Animal animal new Dog();// Dog dog (Dog)new Animal(); 编译成功,运行报错Dog dog (Dog)animal;Dog dog new Dog();Animal animal dog; //等价于Animal animal new Dog();}}pub…