为什么要在这里创建临时工?

问题描述 投票:0回答:0

在这里创建临时文件的目的是什么?

void printAcc(int identifier) {
        
        User2 temp = um.userList[identifier];
        System.out.println("=====================");
        System.out.println("ID : " + temp.id);
        System.out.println("=====================");
        for (int i = 0; i < temp.accCnt; i++) {
            System.out.println("accNumber: " + temp.acc[i].accNumber + "/ money: " + temp.acc[i].money);
        }
        System.out.println("=================================\n");
    }
for-loop temp
© www.soinside.com 2019 - 2024. All rights reserved.