避免路徑變數命名不明確
TL;DR:使用清晰的名稱可以更好地理解程式碼。
處理單一 fileName 或 directoryPath 時,像 file 或 dirName 這樣的模糊名稱會造成混亂。
清晰的名稱,例如用於名稱的 fileName 和用於目錄的 directoryPath 來傳達每個變數的角色。
當您命名變數檔案時,可能會讓其他人對其用途感到困惑。它存儲文件對象還是僅存儲文件名?
當您命名變數dirName而不是directoryName時,它會導致歧義。
清晰且具有描述性的變數名稱可以提高程式碼的可讀性和可維護性,尤其是在協作環境中。
function importBoardGameScores(file) { if (file) { const data = fs.readFileSync(file, 'utf-8'); // Process board game scores... } } function importDirectoryScores(dirName) { // 'dir' is an abbreviation const files = fs.readdirSync(dirName); files.forEach(file => { const data = fs.readFileSync(`${dirName}/${file}`, 'utf-8'); // Process each file's board game scores... }); } }
function importBoardGameScores(fileName) { if (fileName) { const data = fs.readFileSync(fileName, 'utf-8'); // Process board game scores... } } function importDirectoryBoardGamesScores(directoryPath) { const fileNames = fs.readdirSync(directoryPath); // Note the variable holding filenames // and not files fileNames.forEach(filename => { const fullPath = path.join(directoryPath, filename); const scores = importBoardGameScores(fullPath); allScores.push(scores); }); return allScores.flat(); // You can also reify the concept of a filename // And avoid repeating the rules everywhere class Filename { value; constructor(value) { this.validateFilename(value); this.value = value; } validateFilename(value) { const invalidCharacters = /[<>:"/\|?*\x00-\x1F]/g; if (invalidCharacters.test(value)) { throw new Error ('Filename contains invalid characters'); } if (/^[. ]+$/.test(value)) { throw new Error ('Filename cannot consist only of dots or spaces'); } if (value.length > 255) { throw new Error ('Filename is too long'); } } toString() { return this.value; } get value() { return this.value; } }
[X] 半自動
在處理檔案或目錄路徑的程式碼中尋找通用名稱,例如 file 或 dirName。
[x] 初學者
AI 模型可能會預設使用不明確的名稱,例如 file 或 dirName,無需具體說明。
加入描述性命名和程式碼擷取指南可以改善 AI 的輸出。
人工智慧工具可以透過使用清晰的命名約定來修復這種氣味,並在提示時建議提取程式碼以避免冗餘程式碼。
記住:人工智慧助理會犯很多錯誤
Without Proper Instructions | With Specific Instructions |
---|---|
ChatGPT | ChatGPT |
Claude | Claude |
Perplexity | Perplexity |
Copilot | Copilot |
Gemini | Gemini |
透過使用 fileName 和 directoryPath 等精確名稱並提取可重複使用的方法,您可以提高程式碼的清晰度和可維護性。
這些簡單的做法有助於減少冗餘並使程式碼易於理解。
程式碼味道是我的觀點。
照片由 Gabriel Heinzer 在 Unsplash 上拍攝
寫的程式碼應該先供人類閱讀,然後才是機器閱讀。
唐·拉布斯
本文是 CodeSmell 系列的一部分。
以上是代碼氣味 - 目錄名和文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!