2009-06-12から1日間の記事一覧

第122回 Javaはこんな風にも書けるんですな

継承していきなりnewできる ソース: public class Hoge { public static void main(String[] args) { new Object(){ public void m(){ System.out.println("こんにちは"); } }.m(); } } 結果: こんにちは 入れ子になったコレクション ソース: import java…

第121回 chmodのためのls -l

ls -lを実行すると $ ls -l total 16 -rw-r--r-- 1 bingo_nakanishi staff 0 6 12 20:15 bar.txt -r-x------ 1 bingo_nakanishi staff 0 6 3 23:12 foo.txt -rwxr-xr-x 1 bingo_nakanishi staff 432 6 12 21:07 ls_n.pl -rwxr-xr-x 1 bingo_nakanishi staff …