专栏名称: 大侠学Python
我们或许是在学宇宙第一热门语言Python吧!大家都在学Python,大侠和大家一起分享Python资料、Python文章、Python工具资源、Python源码、Python教程,会Python的人生就跟开了挂一样
目录
相关文章推荐
今天看啥  ›  专栏  ›  大侠学Python

如何拥有一个优雅的变量名缩写?

大侠学Python  · 公众号  ·  · 2024-08-07 11:44

文章预览

我有一个同事,能力很强,BUG率很低。 但我每次看他的变量命名,都有种想打人的冲动,也不是我太菜,只是.....(直接上代码吧。) totalNumberOfItems =  150 averageProcessingTime =  5.25 maximumAllowedConnections =  100 configurationSettings = { "timeout" :  30 ,  "retries" :  5 } initializationParameters = { "mode" :  "auto" ,  "threshold" :  0.75 } temporaryFilePath =  "/tmp/data.txt" currentUserSession =  "abc123xyz" databaseConnectionString =  "Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword;" applicationErrorMessage =  "An unexpected error occurred." userAuthenticationToken =  "abcdef123456" 这样看起来还好,但是结合到到应用中就会变成这样: public   class   AppDemo   {      public   static   void   main (String[] args)   {          // 定义变量          int  totalNumberOfItems =  150 ;          double  ave ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览