第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

這是否會(huì)使 MVC 設(shè)計(jì)模式失效?

這是否會(huì)使 MVC 設(shè)計(jì)模式失效?

萬(wàn)千封印 2023-12-13 15:10:20
我想知道使用控制器將本地學(xué)生(模型)拉到我的視圖類中是否會(huì)使 MVC 設(shè)計(jì)模式無(wú)效。供參考我從來(lái)沒(méi)有將我的學(xué)生模型導(dǎo)入到視圖類中。控制器public void saveStudent(int selectedRow, Student studentChanged){    studentList.getStudentList().set(selectedRow, studentChanged);}看法Student currentStudent;. . . .public StudentDetailedUI(StudentCntrl studentCntrIn, int selectedRowIn) {    studentCntrl = studentCntrIn;    selectedRow = selectedRowIn;    if (selectedRow >= 0) {        currentStudent = studentCntrl.getStudent(selectedRow);        initComponents();        parseCurrentStudent();    } else {        initComponents();        parseNewStudent();    }}. . . .JButton saveButton = new JButton("Save");    saveButton.addActionListener((ActionEvent e) -> {        if (selectedRow != -1){            currentStudent.setFirstName(firstNameDisplayValue.getText());            currentStudent.setLastName(lastNameDisplayValue.getText());            currentStudent.setUniversity(universityDisplayValue.getText());            currentStudent.setGpa(Double.parseDouble(gpaDisplayValue.getText()));            StudentDetailedUI.this.studentCntrl.saveStudent(selectedRow, currentStudent);            StudentDetailedUI.this.studentCntrl.getStudentListUI();        }        else {            StudentDetailedUI.this.studentCntrl.addStudent(firstNameDisplayValue.getText() +", " +lastNameDisplayValue.getText() +", " +universityDisplayValue.getText() +", " +gpaDisplayValue.getText());            StudentDetailedUI.this.studentCntrl.getStudentListUI();        }    });我的預(yù)期功能是使用列表詳細(xì)信息 GUI 更新列表中的現(xiàn)有學(xué)生。
查看完整描述

1 回答

?
青春有我

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超8個(gè)贊

只要有關(guān)更新的所有邏輯都保留在控制器中就可以了,最終您可以在視圖中添加一些驗(yàn)證,但控制器仍然應(yīng)該對(duì)聯(lián)系持久層擁有最終決定權(quán)。



查看完整回答
反對(duì) 回復(fù) 2023-12-13
  • 1 回答
  • 0 關(guān)注
  • 165 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)