-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
计科:week1 代码风格检查 #2
Labels
Comments
第一次课课件:点击下载 |
请问do not use namespace using-directives 是什么意思? |
@SchroDeCat 这个错误可以不用管 |
还有win10系统改了环境变量也还是显示python 不是内部或外部命令,只能每次set PATH=%PATH%;C:\Python34有什么解决方案吗? |
@SchroDeCat 是不是使用了中文的分号啊 |
@SchroDeCat 将系统变量放上来看看 |
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Python34; |
ok好了 |
明显使用了中文分号啊!改成这样:
|
改好啦(win10自带输入法切换还不太习惯…… |
@i771645310 这个空白行太多了吧……一行应该可以? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
week1 代码风格检查
一、用cpplint.py进行代码风格检查
下面介绍一个工具的使用来进行代码风格检查。
步骤1:安装python
教程:安装python
步骤2:检查python是否安装成功
cmd
;回车)如下:python
将会出现以下的输出:步骤3:下载cpplint.py
点击下载cpplint.py
步骤4:代码风格检查
把
cpplint.py
文件复制到你的程序代码所在的目录。比如:打开命令行窗口,方法就是步骤2的第一点。导航到代码所在目录。
运行命令
然后就会有如下的输出:
步骤5:根据输出的改善代码
根据输出的错误,逐行改进代码。直到错误数目为0。如
Total errors found: 0
:步骤6:提交到Sicily
把通过google style的cpplint.py测试的代码,也就是
Total errors found: 0
,再把代码提交到Sicily。总结
进行google style风格检测的目的是让同学们写出可读性良好的代码。按照上面的流程编写代码,能帮助你养成良好的编程习惯。希望同学们重视。
有任何问题欢迎评论。我们会持续改进。
参考
The text was updated successfully, but these errors were encountered: