- Tkinter GUI Programming by Example
- David Love
- 215字
- 2021-08-27 18:49:11
Size and portability
The main advantage a command-line application has over a graphical one is the file size. Without the need to include a graphical library and all of its code, a command-line application can be significantly smaller. This not only allows for quicker downloads, but the ability to package the application on smaller forms of physical media.
Since all OSes will have a command-line interface by default, the potential issue of incompatibilities between a user's system and the graphical library in use will also be eliminated. Your application will also be able to run on machines which do not include a means of drawing graphical windows, such as servers, ensuring it can be run by as many users as possible.
Overall, the choice of interface for an application is largely down to what the application itself does and its intended audience. If you are building a simple application which you wish as many people as possible to use, then a graphical interface seems to be the way to go.
If you are creating a specific and very complicated program which is tailored toward people who are familiar enough with computers to not be intimidated by the command line, then the time and disk space savings of a command-line interface could be of real benefit.
- Mastering Entity Framework Core 2.0
- 信息可視化的藝術:信息可視化在英國
- Web交互界面設計與制作(微課版)
- Data Analysis with IBM SPSS Statistics
- Rust Essentials(Second Edition)
- 信息技術應用基礎
- 單片機應用與調試項目教程(C語言版)
- iOS開發實戰:從入門到上架App Store(第2版) (移動開發叢書)
- TypeScript 2.x By Example
- .NET 4.0面向對象編程漫談:應用篇
- Software-Defined Networking with OpenFlow(Second Edition)
- HTML5 Canvas核心技術:圖形、動畫與游戲開發
- 情境微課開發(第2版)
- 前端Serverless:面向全棧的無服務器架構實戰
- Netty 4核心原理與手寫RPC框架實戰