Card() { 
    final int LEN = 10;    m_account = new String[LEN];
    m_status = new boolean[LEN];    for(int j=0; j < LEN; j++) {
        m_account[j] = "1";
        m_status[j] = true;
    }
}在试试。