astyle配置說明

2021-06-28 08:15:06 字數 612 閱讀 9942

astyle配置說明

目錄(?)

[+]1.版本

artistic style version 2.03

2.範例

astyle --style=ansi -j -k3 -w3 -n -u -h -p -f -x */*.cpp

3.範例說明

-j :  單行的條件加入{}

[html]view plaincopy

-k3 : eg:char *p;

-w3: eg char &p;

-u : 移除括號兩邊不必要的空格

-d:insert space padding around parenthesis on the inside only.在括號的內部加入空格,我的**風格中不加入該選項。

-h: insert space padding after paren headers charity 在if、for後加入空格。

-p :insert space padding around operators. 操作符間加空格。

-n :不備份原始檔。

astyle 使用說明 整合到開發平台中

歡迎關注我的社交賬號 文件說明 astyle style ansi main.cs 使用ansi風格格式當前目錄下的所有cpp,cs檔案,注意在批處理檔案時,f 要改為 f for r f in cpp cs do astyle style ansi f 另外可以參考 在source insight...

Astyle使用方法

astyle是乙個命令列工具,使用方法 astyle options sourcefile1 sourcefile2 sourcefile3 example 格式乙個檔案 astyle style linux home user project foo.cpp 遞迴地格式cpp和h檔案 astyle...

AStyle之linux windows指令碼

新建乙個astyle的目錄 把astyle.exe和test.sh指令碼放到工程astyle目錄中,加入makefile bin bash find name c xargs astyle c style ansi find name h xargs astyle c style ansirem 將...