91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

設計一個飛機票管理系統,該系統盡可能模擬實際應用的票務系統,解決實際需求。至少包括如下功能: (1)航班基本信息管理包括但不限于以下信息的增填、刪除、修改、查找:航班號,航空公司名稱,航班起飛、降落、經停地點和時間,航班可售票數等; (2)航班動態管理:發布航班延誤、取消等信息;當航班發生延誤和取消等變更時,通知已經購買該航班機票的乘客,并推薦與該航班具有相同起飛降落地點且未延誤的最近航班。 (3)票務管理:客戶發出購票申請,如有余票則可以直接購票,如果該航班已經無票,提供預約搶票功能:一旦該航班發生退票,自動購買,如有多人預約,按照預約時間順序按照先到先得原則分配;退票:退已購票。 (4)票務查詢:查詢某個兩個城市間航班情況或某指定航班號的航班情況(如輸入航班號,查詢起、降時間,起飛、抵達城市,航班票價,所屬航空公司,是否有余票等); (5)查詢結果排序:票務查詢到多個航班信息時,根據用戶的選擇,分別根據票價、飛行時間、余票數量等信息對相關航班進行排序; (6)航班推薦:輸入兩個城市名稱,假設兩城市間無直飛航班且存在多個轉機航程,自行設計算法,推薦綜合考慮如下因素的最優購票方案:價格、用時、余票數量。[測試數據]可以參考實際航空公司信息或者自行編制虛擬數據作為測試數據。要求城市數目不小于20,航線數目不小于300。 (7)每個組員選擇功能(1)、(2)、(3)中的一個,獨立設計完成,不同組員要求選擇不同功能;若2人一組,可選其中一個功能合作完成。 (8)小組合作完成功能(4)、(5)、(6)中的至少1項。

資源截圖

代碼片段和文件信息

package?lyh;

import?java.io.IOException;
import?java.net.URL;
import?java.util.ResourceBundle;
import?javafx.fxml.Fxml;
import?javafx.fxml.FxmlLoader;
import?javafx.scene.Parent;
import?javafx.scene.control.Button;
import?javafx.scene.control.TextField;
import?javafx.scene.input.MouseEvent;
import?javafx.scene.layout.FlowPane;

public?class?delay?{

????@Fxml?//?ResourceBundle?that?was?given?to?the?FxmlLoader
????private?ResourceBundle?resources;

????@Fxml?//?URL?location?of?the?Fxml?file?that?was?given?to?the?FxmlLoader
????private?URL?location;

????@Fxml?//?fx:id=“delayFlight“
????private?FlowPane?delayFlight;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“textAirways“
????private?TextField?textAirways;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“textFlightnum“
????private?TextField?textFlightnum;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“textTakeoff“
????private?TextField?textTakeoff;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“textLanding“
????private?TextField?textLanding;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“buttonSeek“
????private?Button?buttonSeek;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“textStatus“
????private?TextField?textStatus;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“buttonLast“
????private?Button?buttonLast;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“buttonNext“
????private?Button?buttonNext;?//?Value?injected?by?FxmlLoader

????@Fxml?//?fx:id=“buttonCancel“
????private?Button?buttonCancel;?//?Value?injected?by?FxmlLoader

????@Fxml?//?This?method?is?called?by?the?FxmlLoader?when?initialization?is?complete
????void?initialize()?{
????????assert?delayFlight?!=?null?:?“fx:id=\“delayFlight\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?textAirways?!=?null?:?“fx:id=\“textAirways\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?textFlightnum?!=?null?:?“fx:id=\“textFlightnum\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?textTakeoff?!=?null?:?“fx:id=\“textTakeoff\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?textLanding?!=?null?:?“fx:id=\“textLanding\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?buttonSeek?!=?null?:?“fx:id=\“buttonSeek\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?textStatus?!=?null?:?“fx:id=\“textStatus\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?buttonLast?!=?null?:?“fx:id=\“buttonLast\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?buttonNext?!=?null?:?“fx:id=\“buttonNext\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????assert?buttonCancel?!=?null?:?“fx:id=\“buttonCancel\“?was?not?injected:?check?your?Fxml?file?‘delay.fxml‘.“;
????????buttonCancel.addEventHandler(MouseEvent.MOUSE_CLICKED?mouseEvent?->?{
????????????try?{
????????????????Parent?root?=?FxmlLoader.load(getClass().getResource(“delay.fxml“));
??????????

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\
?????文件??????????66??2019-05-16?10:42??AirTicketSystem-master\.gitattributes
?????文件?????????278??2019-05-16?10:42??AirTicketSystem-master\.gitignore
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\.idea\
?????文件?????????711??2019-05-16?10:42??AirTicketSystem-master\.idea\compiler.xml
?????文件?????????188??2019-05-16?10:42??AirTicketSystem-master\.idea\description.html
?????文件?????????159??2019-05-16?10:42??AirTicketSystem-master\.idea\encodings.xml
?????文件?????????211??2019-05-16?10:42??AirTicketSystem-master\.idea\gradle.xml
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\.idea\inspectionProfiles\
?????文件?????????262??2019-05-16?10:42??AirTicketSystem-master\.idea\inspectionProfiles\Project_Default.xml
?????文件?????????403??2019-05-16?10:42??AirTicketSystem-master\.idea\misc.xml
?????文件?????????270??2019-05-16?10:42??AirTicketSystem-master\.idea\modules.xml
?????文件????????8794??2019-05-16?10:42??AirTicketSystem-master\.idea\uiDesigner.xml
?????文件?????????180??2019-05-16?10:42??AirTicketSystem-master\.idea\vcs.xml
?????文件???????21593??2019-05-16?10:42??AirTicketSystem-master\.idea\workspace.xml
?????文件????????2626??2019-05-16?10:42??AirTicketSystem-master\AirTicketSystem.iml
?????文件????????1067??2019-05-16?10:42??AirTicketSystem-master\LICENSE
?????文件??????????18??2019-05-16?10:42??AirTicketSystem-master\README.md
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\production\
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\meta-INF\
?????文件??????????16??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\meta-INF\AirTicketSystem.kotlin_module
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\lyh\
?????文件????????5346??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\lyh\delay.fxml
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\spg\
?????目錄???????????0??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\spg\UI\
?????文件???????10254??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\spg\UI\addFlight.fxml
?????文件???????13366??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\spg\UI\addFlightTwo.fxml
?????文件????????6169??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\spg\UI\adminOperation.fxml
?????文件????????3139??2019-05-16?10:42??AirTicketSystem-master\out\production\AirTicketSystem\spg\UI\deleteFlight.fxml
............此處省略34個文件信息

評論

共有 條評論