偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

為何編碼規(guī)范每行代碼不超過80個(gè)字符是合理的

開發(fā) 開發(fā)工具 后端
也許在Python編碼風(fēng)格指導(dǎo)(PEP8)中最有爭議的一部分要數(shù)每行代碼不超過80個(gè)字符的限制。沒錯(cuò),實(shí)際上是79個(gè)字符,但我使用80個(gè)字符,這個(gè)大概數(shù),它是給程序員的一個(gè)參考值。

 

編輯器

也許在Python編碼風(fēng)格指導(dǎo)(PEP8)中最有爭議的一部分要數(shù)每行代碼不超過80個(gè)字符的限制。沒錯(cuò),實(shí)際上是79個(gè)字符,但我使用80個(gè)字符,這個(gè)大概數(shù),它是給程序員的一個(gè)參考值。

[[69723]]

古老的VT100終端

現(xiàn)在很多軟件公司采用的編碼規(guī)范基本是PEP8,但每行80個(gè)字符的限制除外。GitHub上的項(xiàng)目,大多數(shù)都遵循PEP8規(guī)范(這一點(diǎn)似乎達(dá)到了高度的統(tǒng)一),但遵守80個(gè)字符限制的很少。在一些有明確規(guī)定的規(guī)范標(biāo)準(zhǔn)中,這個(gè)限制可能會增加(100或120),甚至完全刪除。這樣做常長見的理由是:我們已經(jīng)不是使用VT100終端編程的年代了,我們有了更大,更高分辨率的屏幕。這是事實(shí),但我發(fā)現(xiàn),在Python編碼中采用這個(gè)80個(gè)字符的規(guī)范,配合空格的使用,這會讓我們的代碼更急湊,更可讀。

有一點(diǎn)你可以看出,在自然情況下,Python語句的長度一般會占大概35-60個(gè)字符(不包括縮進(jìn))。更長的語句很少見。如果突然有一個(gè)句子比其它的要長很多,會顯得很突兀,不好看。同樣,使用強(qiáng)制性的空格來增加行寬能夠從視覺上幫助你優(yōu)化減少嵌套循環(huán)的層數(shù),一般的建議是重構(gòu)代碼不要讓縮進(jìn)多于4層。

例如,把下面這個(gè):

  1. def search(directory, file_pattern, path_match,  
  2.            follow_symlinks=True, output=True, colored=True):  
  3.     ''' Search the files matching the pattern. The files will be returned, and can be optionally printed ''' 
  4.  
  5.     pattern = re.compile(file_pattern)  
  6.  
  7.     results = []  
  8.  
  9.     for root, sub_folders, files in os.walk(directory, followlinks=follow_symlinks):  
  10.         # Ignore hidden directories  
  11.         if '/.' in root:  
  12.             continue 
  13.  
  14.         # Search in files and subfolders  
  15.         for filename in files + sub_folders:  
  16.             full_filename = os.path.join(root, filename)  
  17.             to_match = full_filename if path_match else filename  
  18.             match = re.search(pattern, to_match)  
  19.             if match:  
  20.                 # Split the match to be able to colorize it  
  21.                 # prefix, matched_pattern, sufix  
  22.                 smatch = [to_match[:match.start()], to_match[match.start(): match.end()], to_match[match.end():]]  
  23.                 if not path_match:  
  24.                     # Add the fullpath to the prefix  
  25.                     smatch[0] = os.path.join(root, smatch[0])  
  26.  
  27.                 if output:  
  28.                     print_match(smatch, colored)  
  29.  
  30.                 results.append(full_filename)  
  31.  
  32.     return results 

和這個(gè)比較:

  1. def search(directory, file_pattern, path_match,  
  2.            follow_symlinks=True, output=True, colored=True):  
  3.     ''' Search the files matching the pattern.  
  4.         The files will be returned, and can be optionally printed '''  
  5.  
  6.     pattern = re.compile(file_pattern)  
  7.  
  8.     results = []  
  9.  
  10.     for root, sub_folders, files in os.walk(directory,  
  11.                                             followlinks=follow_symlinks):  
  12.         # Ignore hidden directories  
  13.         if '/.' in root:  
  14.             continue 
  15.  
  16.         # Search in files and subfolders  
  17.         for filename in files + sub_folders:  
  18.             full_filename = os.path.join(root, filename)  
  19.             to_match = full_filename if path_match else filename  
  20.             match = re.search(pattern, to_match)  
  21.             if match:  
  22.                 # Split the match to be able to colorize it  
  23.                 # prefix, matched_pattern, sufix  
  24.                 smatch = [to_match[:match.start()],  
  25.                           to_match[match.start(): match.end()],  
  26.                           to_match[match.end():]]  
  27.                 if not path_match:  
  28.                     # Add the fullpath to the prefix  
  29.                     smatch[0] = os.path.join(root, smatch[0])  
  30.  
  31.                 if output:  
  32.                     print_match(smatch, colored)  
  33.  
  34.                 results.append(full_filename)  
  35.  
  36.     return results 

在第一段代碼里會出現(xiàn)滾動(dòng)條,但即使是沒有出現(xiàn)滾動(dòng)條,這代碼表現(xiàn)的也不美觀,視覺上不平衡。第二段代碼看起來更好,更容易閱讀。

另外重要的一點(diǎn)是,我可以在屏幕上顯示更多的東西。很多時(shí)候我們都需要屏幕上同時(shí)看一個(gè)文件的多個(gè)地方,或多個(gè)文件的內(nèi)容。我喜歡的實(shí)現(xiàn)這個(gè)目的的方法是讓它們按列排列。如果整個(gè)文件有80個(gè)寬度的限制,代碼會有一個(gè)很好的呈現(xiàn),我不用擔(dān)心代碼在編輯器里會否自動(dòng)折行,不用去麻煩配置編輯器。如果我需要使用 vim在命令行里快速編輯一個(gè)文件,就不用擔(dān)心文件的寬度。能專注于代碼。

豎行排列顯示

豎行排列顯示

唯一有問題的是使用Django的時(shí)候。當(dāng)使用Django框架,你需要使用很多像這樣的調(diào)用:

  1. ThisIsMyModel.objects.find(field1=value1, field2=value2).count() 

在有縮進(jìn)的代碼里,一個(gè)‘最小’的model函數(shù)調(diào)用都會讓你沒有多少剩余空間…但我仍然堅(jiān)持相同的原則,盡量讓代碼表現(xiàn)的清晰可讀,但這比起其它Python代碼來要難的多。

所以,即使這個(gè)限制最初的愿望已經(jīng)和現(xiàn)在完全不符合,我仍然覺得這個(gè)限制能幫助我寫出更可讀緊湊的代碼。我是一個(gè)要求“可讀性”的狂熱分子,我甚至認(rèn)為代碼的可讀性是一個(gè)最重要的需要考慮的方面,程序員應(yīng)該在任何時(shí)候都銘記這一點(diǎn)。

英文原文:80 chars per line is great

譯文連接:http://www.aqee.net/80-chars-per-line-is-great/

責(zé)任編輯:林師授 來源: 外刊IT評論
相關(guān)推薦

2009-12-03 09:42:25

2025-03-04 13:00:00

JavaScrip代碼語言

2019-12-16 09:26:05

Java設(shè)計(jì)操作系統(tǒng)

2024-10-07 10:00:00

Python代碼編碼

2023-04-25 15:46:51

Python字符串

2012-09-18 09:17:34

Java規(guī)范代碼代碼

2015-03-18 09:34:47

程序員編碼規(guī)范

2020-09-18 14:23:50

字符

2024-04-03 09:55:21

代碼Go開發(fā)

2022-11-24 08:01:57

bash腳本字符串

2013-07-10 10:07:51

編碼規(guī)范編碼

2013-07-10 09:58:14

編碼規(guī)范

2023-10-23 12:28:45

模型研究

2012-01-13 09:22:28

2023-08-15 09:00:00

人工智能破解密碼

2020-06-28 14:18:23

Python代碼開發(fā)

2015-06-04 11:32:35

2013-04-08 10:33:54

編碼編碼規(guī)范

2019-01-08 09:23:16

Java字符串編碼

2014-10-30 13:46:10

谷歌
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號