分类:
2007-01-07 21:17:37
[文章导读]
本文介绍一个名为astyle的开源代码整理工具以及在VC开发环境中集成配置的方法
[正文]
如果你是一名VC程序员,你是否被一个问题所困扰?项目小组有编程规范要求严格执行,但是项目进度紧张,每天都有大量的代码需要完成。很难做到既能保证开发进度,又能编写出良好风格、缩进规范的代码。如果采用其他工具对源文件进行代码整理,又需在VC之外重新打开源代码,整理结果不能直接在VC中查看编译。能不能在VC中集成一种工具,轻松点击VC按钮即可整理源码呢?回答是有。
下面我就介绍一个名为astyle的开源代码整理工具以及在VC开发环境中集成配置的方法。可以迅速实现在VC中进行代码整理的功能,希望能给你一定的帮助。
1、 访问,下载astyle包,包括源文件、可执行文件、使用说明等。
2、 拷贝astyle.exe到c:\winnt\system32下。
3、 接下来配置VC,添加astyle代码整理功能。
1) 在VC中新建菜单项"格式整理"。在工具栏上点击右键打开Customize窗口,在Tools标签页新建一个菜单项:"格式整理",并在Command中输入菜单项对应外挂工具程序当前所在路径:"C:\winnt\system32\astyle.exe"。
namespace foospace { int Foo() { if (isBar) { bar(); return 1; } else return 0; } } |
namespace foospace { int Foo() { if (isBar) { bar(); return 1; } else return 0; } } |
namespace foospace { int Foo() { if (isBar) { bar(); return 1; } else return 0; } } |
namespace foospace { int Foo() { if (isBar) { bar(); return 1; } else return 0; } } |
class foospace { int Foo() { if (isBar) { bar(); return 1; } else return 0; } } |