java题库7

1.hashmap允许值为空,hashtable不允许;

2.public class Test
{
    static boolean foo(char c)
    {
        System.out.print(c);
        return true;
    }
    public static void main( String[] argv )
    {
        int i = 0;
        for ( foo('A'); foo('B') && (i < 2); foo('C'))
        {
            i++ ;
            foo('D');
        }
    }
}

What is the result?// ABDCBDCB
 

posted @ 2020-04-26 23:09  下饭  阅读(196)  评论(0编辑  收藏  举报