VS2008添加AStyle代码格式化工具

C/C++代码经常由于编码风格原因,导致阅读存在困难,现在向大家介绍在VS2008中引入AStyle代码格式化工具实现代码快速排版;

 

1、进入VS2008工具->外部工具,单击添加,输入以下内容:

 

[cpp:nogutter] view plain copy print ?
  1. 标题:AStyle  
  2.   
  3. 命令:D:/Application/astyle/bin/AStyle.exe  
  4.   
  5. 参数:--style=allman --indent=tab --suffix=none $(ItemFileName)$(ItemExt)  
  6.   
  7. 初始目录:$(ItemDir)  
  8.   
  9. 勾选使用输出窗口  
标题:AStyle 命令:D:/Application/astyle/bin/AStyle.exe 参数:--style=allman --indent=tab --suffix=none $(ItemFileName)$(ItemExt) 初始目录:$(ItemDir) 勾选使用输出窗口

 

2、确定保存,工具菜单下多了AStyle菜单

 

3、打开需要格式化的源代码文件,单击AStyle,即可按照配置完成代码格式化;

 

4、当然,AStyle不仅仅能够为C/C++代码格式化,还能为Java等各种代码格式化,可以参考AStyle的文档;

 

附AStyle下载地址:http://sourceforge.net/projects/astyle/

你可能感兴趣的:(java,文档,工具,化工)