ASP中常用的變數命名規則

2022-01-11 18:34:05 字數 730 閱讀 8677

在asp程式設計中,如果你遵守了下面的變數命名規則,你的**的可行性、可維護性將會更好:

一般命名規則 字首 變數型別 例子

b or bln boolean bsuccess 

c or cur currency camount 

d or dbl double dblquantity 

dt or dat date and time dtdate 

f or flt float fratio 

l or lng long lmilliseconds 

i or int integer icounter  

s or str string sname 

a or arr array ausers() 

o or obj com object opipeline  

資料庫物件的變數字首:

字首  物件型別  例子 

cnn connection cnnpubs 

rst recordset rstauthors 

cmd command cmdemployee 

fld field fldlastname 

作用範圍相關字首:

字首 描述

g_ 在global.asa中建立的變數 

m_ 在include檔案和asp檔案中建立的變數 

沒有字首  非靜態變數,或者過程中的變數 

ASP中常用的變數命名規則

在asp程式設計中,如果你遵守了下面的變數命名規則,你的 的可行性 可維護性將會更好 一般命名規則 字首 變數型別 例子 b or bln boolean bsuccess c or cur currency camount d or dbl double dblquantity dt or dat...

常用變數命名規則

常用變數命名規則 一 匈牙利命名法 hungarian 廣泛應用於象microsoft windows這樣的環境中。windows 程式設計中用到的變數 還包括巨集 的命名規則匈牙利命名法,這種命名技術是由一位能幹的 microsoft 程式設計師查爾斯 西蒙尼 charles simonyi 提出...

變數命名規則

1.匈牙利命名 開頭字母用變數型別的縮寫,其餘部分用變數的英文或英文的縮寫,要求單詞第乙個字母大寫。for example long lsum 0 l 是型別的縮寫 2.小駝峰式 little camel case 第乙個單詞首字母小寫,後面其他單詞首字母大寫。for example string ...