摘要:
1.1Math Math:类封装了很多数学的功能。 构造器被定义成private,因此无法参加Math类的对象,所有方法都是类方法,可以直接通过类名来调用,还提供了两个类变量:PI和E。 public class MathTest { public static void main(String[] 阅读全文
摘要:
增加一列: alter table emp4 add test varchar2(10); 修改一列: alter table emp4 modify test varchar2(20); 删除一列: alter table emp4 drop column test; 这里要注意几个地方,首先,增 阅读全文
摘要:
cd $delivery_dir for file in `ls $delivery_dir` do if [ -d $delivery_dir"/"$file ]; then cd $delivery_dir"/"$file git pull cd $server_tools_dir"projec 阅读全文