摘要:
阅读全文
摘要:
MOVE截断 X类型是左对齐,9类型是右对齐 不同类型的数据之间进行MOVE的时候,先进行数据类型转换。 例如,MOVE 9(5) TO X(6), 先把9(5)转换成X(5),再赋值给X(6)。 例: 结果:'12345' 01 A pic X(5) VALUE "12345"; 01 B pic 阅读全文
摘要:
ARRAYSIZE or ROWPREFETCH in sqlplus? What is the difference between the well known sqlplus-setting arraysize and the new sqlplus-12.2.-feature rowpref 阅读全文
摘要:
sort -k1.5,1.22 -u 1.txt > 2.txt 取出 第五列到第22列重复的 start from 5 until 22 uniq -s 5 -w 22 1.txt 阅读全文
摘要:
作者:老刘链接:https://www.zhihu.com/question/362802033/answer/1641622606来源:知乎著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。 常用框架: 集成开发工具(IDE):Eclipse、MyEclipse、Spring T 阅读全文
摘要:
annotation for class Below programs demonstrate the getAnnotation() method. Example 1: filter_none edit play_arrow brightness_4 // Java program to dem 阅读全文
摘要:
文件编码EUC-KR Oracle编码 [] echo $NLS_LANGAMERICAN_AMERICA.KO16MSWIN949 KO16MSWIN949 Microsoft Windows Code Page 949 Korean 阅读全文
摘要:
问题: 1、比如两个类父类:Person 子类 Student extends Person在使用时候,这样写:Person person=null; //声明对象person=new Student(); //创建对象这样看来 声明的时候,是父类,而在产生对象的时候,实际的对象是子类。怎么理解?? 阅读全文
摘要:
阅读全文
摘要:
其实 getParameter()和getAttribute ()最简单的两点区别就是 1)赋值方式不一样,前者是客户端如浏览器端将请求参数值送给服务器端,而后者则是在请求到达服务器端之后,在服务器进行存放进去 2)两者的返回值类型不一样,前者永远返回字符串,后者返回任意对象 问题 既然parame 阅读全文