实例介绍
1、界面精美,通过了很多小细节去处理界面 2、功能覆盖很紧密和全面,达到一种视觉上的精简效果 3、代码质量较好,有很多注释方便大家去阅读理解 4、压缩包里还有项目分析,问题解决方案,以及实验报告
【实例截图】
【核心代码】
JavaLabHomework
├── Mine
│ ├── GornmetCoffee(閮戠ク 20145033).zip
│ ├── JavaGoodIdeas.txt
│ ├── JavaNewFunction.txt
│ ├── JavaQuestions.txt
│ ├── Plan.txt
│ ├── lab3
│ │ ├── GornmetCoffee1
│ │ │ ├── GornmetCoffee1.iml
│ │ │ ├── out
│ │ │ │ └── production
│ │ │ │ └── GornmetCoffee1
│ │ │ │ ├── Coffee.class
│ │ │ │ ├── CoffeeBrewer.class
│ │ │ │ ├── OrderItem.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── TestCoffee.class
│ │ │ │ ├── TestCoffeeBrewer.class
│ │ │ │ ├── TestOrderItem.class
│ │ │ │ └── TestProduct.class
│ │ │ └── src
│ │ │ ├── Coffee.java
│ │ │ ├── CoffeeBrewer.java
│ │ │ ├── OrderItem.java
│ │ │ ├── Product.java
│ │ │ ├── TestCoffee.java
│ │ │ ├── TestCoffeeBrewer.java
│ │ │ ├── TestOrderItem.java
│ │ │ └── TestProduct.java
│ │ ├── Implementing the Gourmet Coffee System.doc
│ │ └── student-files.zip
│ ├── lab4
│ │ ├── GornmetCoffee2
│ │ │ ├── GornmetCoffee2.iml
│ │ │ ├── out
│ │ │ │ └── production
│ │ │ │ └── GornmetCoffee2
│ │ │ │ ├── Catalog.class
│ │ │ │ ├── Coffee.class
│ │ │ │ ├── CoffeeBrewer.class
│ │ │ │ ├── GourmetCoffee.class
│ │ │ │ ├── Order.class
│ │ │ │ ├── OrderItem.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── Sales.class
│ │ │ │ ├── TestCatalog.class
│ │ │ │ ├── TestOrder.class
│ │ │ │ └── TestSales.class
│ │ │ └── src
│ │ │ ├── Catalog.java
│ │ │ ├── Coffee.java
│ │ │ ├── CoffeeBrewer.java
│ │ │ ├── GourmetCoffee.java
│ │ │ ├── Order.java
│ │ │ ├── OrderItem.java
│ │ │ ├── Product.java
│ │ │ ├── Sales.java
│ │ │ ├── TestCatalog.java
│ │ │ ├── TestOrder.java
│ │ │ └── TestSales.java
│ │ ├── Implementing the Collections in the Gourmet Coffee System.doc
│ │ └── student-files(1).zip
│ ├── lab5
│ │ ├── GornmetCoffee3
│ │ │ ├── GornmetCoffee3.iml
│ │ │ ├── out
│ │ │ │ └── production
│ │ │ │ └── GornmetCoffee3
│ │ │ │ ├── Catalog.class
│ │ │ │ ├── Coffee.class
│ │ │ │ ├── CoffeeBrewer.class
│ │ │ │ ├── GourmetCoffee.class
│ │ │ │ ├── HTMLSalesFormatter.class
│ │ │ │ ├── Order.class
│ │ │ │ ├── OrderItem.class
│ │ │ │ ├── PlainTextSalesFormatter.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── Sales.class
│ │ │ │ ├── SalesFormatter.class
│ │ │ │ └── XMLSalesFormatter.class
│ │ │ └── src
│ │ │ ├── Catalog.java
│ │ │ ├── Coffee.java
│ │ │ ├── CoffeeBrewer.java
│ │ │ ├── GourmetCoffee.java
│ │ │ ├── HTMLSalesFormatter.java
│ │ │ ├── Order.java
│ │ │ ├── OrderItem.java
│ │ │ ├── PlainTextSalesFormatter.java
│ │ │ ├── Product.java
│ │ │ ├── Sales.java
│ │ │ ├── SalesFormatter.java
│ │ │ └── XMLSalesFormatter.java
│ │ ├── Using Design Patterns in the Gourmet Coffee System.doc
│ │ ├── student-files
│ │ │ ├── Catalog.class
│ │ │ ├── Catalog.html
│ │ │ ├── Coffee.class
│ │ │ ├── Coffee.html
│ │ │ ├── CoffeeBrewer.class
│ │ │ ├── CoffeeBrewer.html
│ │ │ ├── GourmetCoffee.java
│ │ │ ├── Order.class
│ │ │ ├── Order.html
│ │ │ ├── OrderItem.class
│ │ │ ├── OrderItem.html
│ │ │ ├── Product.class
│ │ │ ├── Product.html
│ │ │ ├── Sales.class
│ │ │ ├── Sales.html
│ │ │ └── resources
│ │ │ └── inherit.gif
│ │ └── student-files.zip
│ ├── lab6
│ │ ├── GornmetCoffee4
│ │ │ ├── GornmetCoffee4.iml
│ │ │ ├── catalog.dat
│ │ │ ├── empty.dat
│ │ │ ├── out
│ │ │ │ └── production
│ │ │ │ └── GornmetCoffee4
│ │ │ │ ├── Catalog.class
│ │ │ │ ├── CatalogLoader.class
│ │ │ │ ├── Coffee.class
│ │ │ │ ├── CoffeeBrewer.class
│ │ │ │ ├── DataFormatException.class
│ │ │ │ ├── FileCatalogLoader.class
│ │ │ │ ├── GourmetCoffee.class
│ │ │ │ ├── HTMLSalesFormatter.class
│ │ │ │ ├── Order.class
│ │ │ │ ├── OrderItem.class
│ │ │ │ ├── PlainTextSalesFormatter.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── Sales.class
│ │ │ │ ├── SalesFormatter.class
│ │ │ │ ├── TestFileCatalogLoader.class
│ │ │ │ └── XMLSalesFormatter.class
│ │ │ └── src
│ │ │ ├── Catalog.java
│ │ │ ├── CatalogLoader.java
│ │ │ ├── Coffee.java
│ │ │ ├── CoffeeBrewer.java
│ │ │ ├── DataFormatException.java
│ │ │ ├── FileCatalogLoader.java
│ │ │ ├── GourmetCoffee.java
│ │ │ ├── HTMLSalesFormatter.java
│ │ │ ├── Order.java
│ │ │ ├── OrderItem.java
│ │ │ ├── PlainTextSalesFormatter.java
│ │ │ ├── Product.java
│ │ │ ├── Sales.java
│ │ │ ├── SalesFormatter.java
│ │ │ ├── TestFileCatalogLoader.java
│ │ │ └── XMLSalesFormatter.java
│ │ ├── Using File I.doc
│ │ ├── resources
│ │ │ └── inherit.gif
│ │ ├── student-files
│ │ │ ├── Catalog.class
│ │ │ ├── Catalog.html
│ │ │ ├── CatalogLoader.java
│ │ │ ├── Coffee.class
│ │ │ ├── Coffee.html
│ │ │ ├── CoffeeBrewer.class
│ │ │ ├── CoffeeBrewer.html
│ │ │ ├── DataFormatException.java
│ │ │ ├── GourmetCoffee.java
│ │ │ ├── HTMLSalesFormatter.class
│ │ │ ├── HTMLSalesFormatter.html
│ │ │ ├── Order.class
│ │ │ ├── Order.html
│ │ │ ├── OrderItem.class
│ │ │ ├── OrderItem.html
│ │ │ ├── PlainTextSalesFormatter.class
│ │ │ ├── PlainTextSalesFormatter.html
│ │ │ ├── Product.class
│ │ │ ├── Product.html
│ │ │ ├── Sales.class
│ │ │ ├── Sales.html
│ │ │ ├── SalesFormatter.class
│ │ │ ├── SalesFormatter.html
│ │ │ ├── TestFileCatalogLoader.java
│ │ │ ├── XMLSalesFormatter.class
│ │ │ ├── XMLSalesFormatter.html
│ │ │ ├── catalog.dat
│ │ │ ├── empty.dat
│ │ │ └── resources
│ │ │ └── inherit.gif
│ │ └── student-files.zip
│ ├── lab7
│ │ ├── GornmetCoffee5
│ │ │ ├── GornmetCoffee5.iml
│ │ │ ├── catalog.dat
│ │ │ ├── out
│ │ │ │ └── production
│ │ │ │ └── GornmetCoffee5
│ │ │ │ ├── Catalog.class
│ │ │ │ ├── CatalogGUI$CatalogListListener.class
│ │ │ │ ├── CatalogGUI.class
│ │ │ │ ├── CatalogLoader.class
│ │ │ │ ├── Coffee.class
│ │ │ │ ├── CoffeeBrewer.class
│ │ │ │ ├── DataField.class
│ │ │ │ ├── DataFormatException.class
│ │ │ │ ├── FileCatalogLoader.class
│ │ │ │ └── Product.class
│ │ │ └── src
│ │ │ ├── Catalog.java
│ │ │ ├── CatalogGUI.java
│ │ │ ├── CatalogLoader.java
│ │ │ ├── Coffee.java
│ │ │ ├── CoffeeBrewer.java
│ │ │ ├── DataField.java
│ │ │ ├── DataFormatException.java
│ │ │ ├── FileCatalogLoader.java
│ │ │ └── Product.java
│ │ ├── Implementing a GUI for the Gourmet Coffee System锛圥art1锛?doc
│ │ ├── resources
│ │ │ └── inherit.gif
│ │ ├── student-files
│ │ │ ├── Catalog.class
│ │ │ ├── Catalog.html
│ │ │ ├── CatalogGUI.java
│ │ │ ├── CatalogLoader.class
│ │ │ ├── CatalogLoader.html
│ │ │ ├── Coffee.class
│ │ │ ├── Coffee.html
│ │ │ ├── CoffeeBrewer.class
│ │ │ ├── CoffeeBrewer.html
│ │ │ ├── DataField.class
│ │ │ ├── DataField.html
│ │ │ ├── DataFormatException.class
│ │ │ ├── DataFormatException.html
│ │ │ ├── FileCatalogLoader.class
│ │ │ ├── FileCatalogLoader.html
│ │ │ ├── Product.class
│ │ │ ├── Product.html
│ │ │ ├── catalog.dat
│ │ │ └── resources
│ │ │ └── inherit.gif
│ │ └── student-files.zip
│ ├── lab8
│ │ ├── GornmetCoffee6
│ │ │ ├── GornmetCoffee6.iml
│ │ │ ├── HTMLHistory.dat
│ │ │ ├── PlainHistory.dat
│ │ │ ├── XMLHistory.dat
│ │ │ ├── catalog.dat
│ │ │ ├── coffee1.gif
│ │ │ ├── coffee3.png
│ │ │ ├── coffeeLogo2.gif
│ │ │ ├── out
│ │ │ │ └── production
│ │ │ │ └── GornmetCoffee6
│ │ │ │ ├── AddProductGUI$clickCoffeeBrewerListener.class
│ │ │ │ ├── AddProductGUI$clickCoffeeListener.class
│ │ │ │ ├── AddProductGUI$clickProductListener.class
│ │ │ │ ├── AddProductGUI$clickSaveButtonListener.class
│ │ │ │ ├── AddProductGUI.class
│ │ │ │ ├── Catalog.class
│ │ │ │ ├── CatalogLoader.class
│ │ │ │ ├── Coffee.class
│ │ │ │ ├── CoffeeBrewer.class
│ │ │ │ ├── DataField.class
│ │ │ │ ├── DataFormatException.class
│ │ │ │ ├── DeleteProductGUI$clickCoffeeBrewerListener.class
│ │ │ │ ├── DeleteProductGUI$clickCoffeeListener.class
│ │ │ │ ├── DeleteProductGUI$clickProductListener.class
│ │ │ │ ├── DeleteProductGUI$clickSaveButtonListener.class
│ │ │ │ ├── DeleteProductGUI.class
│ │ │ │ ├── DisplayOrderGUI$DisplaySalesListener.class
│ │ │ │ ├── DisplayOrderGUI$HTMLListener.class
│ │ │ │ ├── DisplayOrderGUI$PlainListener.class
│ │ │ │ ├── DisplayOrderGUI$SaveSalesListener.class
│ │ │ │ ├── DisplayOrderGUI$XMLListener.class
│ │ │ │ ├── DisplayOrderGUI.class
│ │ │ │ ├── DisplayOrderVIPGUI$DisplaySalesListener.class
│ │ │ │ ├── DisplayOrderVIPGUI$HTMLListener.class
│ │ │ │ ├── DisplayOrderVIPGUI$PlainListener.class
│ │ │ │ ├── DisplayOrderVIPGUI$SaveSalesListener.class
│ │ │ │ ├── DisplayOrderVIPGUI$XMLListener.class
│ │ │ │ ├── DisplayOrderVIPGUI.class
│ │ │ │ ├── FeedbackGUI$CancelListener.class
│ │ │ │ ├── FeedbackGUI$SubmitListener.class
│ │ │ │ ├── FeedbackGUI.class
│ │ │ │ ├── FileCatalogLoader.class
│ │ │ │ ├── GourmetCoffeeOfflineGUI$AddModifyListener.class
│ │ │ │ ├── GourmetCoffeeOfflineGUI$DisplayProductListener.class
│ │ │ │ ├── GourmetCoffeeOfflineGUI$RegisterSaleListener.class
│ │ │ │ ├── GourmetCoffeeOfflineGUI$RemoveListener.class
│ │ │ │ ├── GourmetCoffeeOfflineGUI.class
│ │ │ │ ├── GourmetCoffeeOfflineVIPGUI$AddModifyListener.class
│ │ │ │ ├── GourmetCoffeeOfflineVIPGUI$DisplayProductListener.class
│ │ │ │ ├── GourmetCoffeeOfflineVIPGUI$RegisterSaleListener.class
│ │ │ │ ├── GourmetCoffeeOfflineVIPGUI$RemoveListener.class
│ │ │ │ ├── GourmetCoffeeOfflineVIPGUI.class
│ │ │ │ ├── GourmetCoffeeOnlineGUI.class
│ │ │ │ ├── HTMLSalesFormatter.class
│ │ │ │ ├── LoadingGUI.class
│ │ │ │ ├── ManagerModelGUI$AddProductListener.class
│ │ │ │ ├── ManagerModelGUI$DeleteProductListener.class
│ │ │ │ ├── ManagerModelGUI$LastPageListener.class
│ │ │ │ ├── ManagerModelGUI$ModifyProductListener.class
│ │ │ │ ├── ManagerModelGUI$SuggestionBoxListener.class
│ │ │ │ ├── ManagerModelGUI.class
│ │ │ │ ├── ModifyProdcutGUI$clickCoffeeBrewerListener.class
│ │ │ │ ├── ModifyProdcutGUI$clickCoffeeListener.class
│ │ │ │ ├── ModifyProdcutGUI$clickProductListener.class
│ │ │ │ ├── ModifyProdcutGUI$clickSaveButtonListener.class
│ │ │ │ ├── ModifyProdcutGUI.class
│ │ │ │ ├── ModifyProductDetailedGUI$clickConfirmButtonActionListener.class
│ │ │ │ ├── ModifyProductDetailedGUI.class
│ │ │ │ ├── OfflineFunctionGUI$1.class
│ │ │ │ ├── OfflineFunctionGUI$2.class
│ │ │ │ ├── OfflineFunctionGUI$LastPageListener.class
│ │ │ │ ├── OfflineFunctionGUI$OrderHistoryListener.class
│ │ │ │ ├── OfflineFunctionGUI$ReturnInformationListener.class
│ │ │ │ ├── OfflineFunctionGUI$VIPAccessListener.class
│ │ │ │ ├── OfflineFunctionGUI$VIPLoginListener.class
│ │ │ │ ├── OfflineFunctionGUI.class
│ │ │ │ ├── Order.class
│ │ │ │ ├── OrderHistoryGUI$DisplaySalesListener.class
│ │ │ │ ├── OrderHistoryGUI$HTMLListener.class
│ │ │ │ ├── OrderHistoryGUI$PlainListener.class
│ │ │ │ ├── OrderHistoryGUI$SaveSalesListener.class
│ │ │ │ ├── OrderHistoryGUI$XMLListener.class
│ │ │ │ ├── OrderHistoryGUI.class
│ │ │ │ ├── OrderItem.class
│ │ │ │ ├── PlainTextSalesFormatter.class
│ │ │ │ ├── Product.class
│ │ │ │ ├── Sales.class
│ │ │ │ ├── SalesFormatter.class
│ │ │ │ ├── StartGUI$OfflineListener$1.class
│ │ │ │ ├── StartGUI$OfflineListener$2.class
│ │ │ │ ├── StartGUI$OfflineListener.class
│ │ │ │ ├── StartGUI$OnlineListener.class
│ │ │ │ ├── StartGUI$managerModelListener$1.class
│ │ │ │ ├── StartGUI$managerModelListener.class
│ │ │ │ ├── StartGUI.class
│ │ │ │ ├── SuggestionBoxGUI.class
│ │ │ │ └── XMLSalesFormatter.class
│ │ │ ├── src
│ │ │ │ ├── AddProductGUI.java
│ │ │ │ ├── Catalog.java
│ │ │ │ ├── CatalogLoader.java
│ │ │ │ ├── Coffee.java
│ │ │ │ ├── CoffeeBrewer.java
│ │ │ │ ├── DataField.java
│ │ │ │ ├── DataFormatException.java
│ │ │ │ ├── DeleteProductGUI.java
│ │ │ │ ├── DisplayOrderGUI.java
│ │ │ │ ├── DisplayOrderVIPGUI.java
│ │ │ │ ├── FeedbackGUI.java
│ │ │ │ ├── FileCatalogLoader.java
│ │ │ │ ├── GourmetCoffeeOfflineGUI.java
│ │ │ │ ├── GourmetCoffeeOfflineVIPGUI.java
│ │ │ │ ├── GourmetCoffeeOnlineGUI.java
│ │ │ │ ├── HTMLSalesFormatter.java
│ │ │ │ ├── LoadingGUI.java
│ │ │ │ ├── ManagerModelGUI.java
│ │ │ │ ├── ModifyProdcutGUI.java
│ │ │ │ ├── ModifyProductDetailedGUI.java
│ │ │ │ ├── OfflineFunctionGUI.java
│ │ │ │ ├── Order.java
│ │ │ │ ├── OrderHistoryGUI.java
│ │ │ │ ├── OrderItem.java
│ │ │ │ ├── PlainTextSalesFormatter.java
│ │ │ │ ├── Product.java
│ │ │ │ ├── Sales.java
│ │ │ │ ├── SalesFormatter.java
│ │ │ │ ├── StartGUI.java
│ │ │ │ ├── SuggestionBoxGUI.java
│ │ │ │ └── XMLSalesFormatter.java
│ │ │ ├── suggestion.dat
│ │ │ ├── test.dat
│ │ │ └── user.dat
│ │ ├── Implementing a GUI for the Gourmet Coffee System(Part2).doc
│ │ ├── exe-gourmet-coffee-gui
│ │ │ ├── CatalogLoaderSolution.class
│ │ │ ├── CatalogSolution.class
│ │ │ ├── CoffeeBrewerSolution.class
│ │ │ ├── CoffeeSolution.class
│ │ │ ├── DataFieldSolution.class
│ │ │ ├── DataFormatExceptionSolution.class
│ │ │ ├── FileCatalogLoaderSolution.class
│ │ │ ├── GourmetCoffeeGUISolution$AddModifyListener.class
│ │ │ ├── GourmetCoffeeGUISolution$DisplayProductListener.class
│ │ │ ├── GourmetCoffeeGUISolution$DisplaySalesListener.class
│ │ │ ├── GourmetCoffeeGUISolution$HTMLListener.class
│ │ │ ├── GourmetCoffeeGUISolution$PlainListener.class
│ │ │ ├── GourmetCoffeeGUISolution$RegisterSaleListener.class
│ │ │ ├── GourmetCoffeeGUISolution$RemoveListener.class
│ │ │ ├── GourmetCoffeeGUISolution$SaveSalesListener.class
│ │ │ ├── GourmetCoffeeGUISolution$XMLListener.class
│ │ │ ├── GourmetCoffeeGUISolution.class
│ │ │ ├── HTMLSalesFormatterSolution.class
│ │ │ ├── META-INF
│ │ │ │ └── MANIFEST.MF
│ │ │ ├── OrderItemSolution.class
│ │ │ ├── OrderSolution.class
│ │ │ ├── PlainTextSalesFormatterSolution.class
│ │ │ ├── ProductSolution.class
│ │ │ ├── SalesFormatterSolution.class
│ │ │ ├── SalesSolution.class
│ │ │ └── XMLSalesFormatterSolution.class
│ │ ├── exe-gourmet-coffee-gui.zip
│ │ ├── git
│ │ │ ├── GornmetCoffee(瀹岀粨鐗?鍒濇)).zip
│ │ │ ├── GornmetCoffee(鏈€缁堢増(搴旇鏄簡)).zip
│ │ │ ├── GornmetCoffee(鏈€缁堢増2).zip
│ │ │ ├── GornmetCoffee(鏈€缁堢増鏈?).zip
│ │ │ ├── GornmetCoffee(鏈€缁堢増鏈?閫昏緫浼樺寲瀹屾垚).zip
│ │ │ ├── GornmetCoffee(妗嗘灦澶ц嚧瀹屾垚).zip
│ │ │ ├── GornmetCoffee(鐣岄潰浼樺寲娓╁畬鎴?.zip
│ │ │ ├── GornmetCoffee(闂锛氭棤娉曟樉绀轰俊鎭?.zip
│ │ │ ├── GornmetCoffee(鏌ョ湅鍘嗗彶璁板綍鍔熻兘瀹屾垚).zip
│ │ │ ├── GornmetCoffee6(杈冨畬鍠勬鏋?.zip
│ │ │ ├── GornmetCoffee6(杩涗竴姝ュ畬鍠勬鏋?.zip
│ │ │ ├── GourmetCoffee(BasicVersion).zip
│ │ │ └── GourmetCoffee(鍩烘湰妗嗘灦).zip
│ │ ├── student-files
│ │ │ ├── Catalog.class
│ │ │ ├── Catalog.html
│ │ │ ├── CatalogLoader.class
│ │ │ ├── CatalogLoader.html
│ │ │ ├── Coffee.class
│ │ │ ├── Coffee.html
│ │ │ ├── CoffeeBrewer.class
│ │ │ ├── CoffeeBrewer.html
│ │ │ ├── DataField.class
│ │ │ ├── DataField.html
│ │ │ ├── DataFormatException.class
│ │ │ ├── DataFormatException.html
│ │ │ ├── FileCatalogLoader.class
│ │ │ ├── FileCatalogLoader.html
│ │ │ ├── GourmetCoffeeGUI.java
│ │ │ ├── HTMLSalesFormatter.class
│ │ │ ├── HTMLSalesFormatter.html
│ │ │ ├── Order.class
│ │ │ ├── Order.html
│ │ │ ├── OrderItem.class
│ │ │ ├── OrderItem.html
│ │ │ ├── PlainTextSalesFormatter.class
│ │ │ ├── PlainTextSalesFormatter.html
│ │ │ ├── Product.class
│ │ │ ├── Product.html
│ │ │ ├── Sales.class
│ │ │ ├── Sales.html
│ │ │ ├── SalesFormatter.class
│ │ │ ├── SalesFormatter.html
│ │ │ ├── XMLSalesFormatter.class
│ │ │ ├── XMLSalesFormatter.html
│ │ │ ├── catalog.dat
│ │ │ └── resources
│ │ │ └── inherit.gif
│ │ └── student-files.zip
│ ├── 閮戠ク 20145033.zip
│ ├── 娴佺▼鍥?pptx
│ └── 闈㈠悜瀵硅薄绋嬪簭璁捐璇剧▼璁捐(20145033 閮戠ク).docx
└── __MACOSX
└── Mine
├── lab3
├── lab4
├── lab5
├── lab6
│ └── GornmetCoffee4
│ └── out
│ └── production
│ └── GornmetCoffee4
├── lab7
└── lab8
├── GornmetCoffee6
│ └── src
├── git
└── student-files
66 directories, 409 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论