3.1 Opening comments
All source files should have a C-style comment at the beginning that lists the class name, feature, version information, date, author, and copyright notice:
/*
* Class Name
* function
* Version
* Date
* Author
* Copyright
*/
If the file is modified, it should be in the file header to explain the purpose of modification, modify the date, modify the person, and change the version information of the file, if you modify the part of the file, you can comment in the file, and identify the beginning and end of the modified section
......
/*
* Purpose of modification
* Date Modified
* Modify People
* Version
*/
......
Modify Start
......
......
Modify End
......
http://www.bkjia.com/PHPjc/532602.html www.bkjia.com true http://www.bkjia.com/PHPjc/532602.html techarticle 3.1 Start note All source files should have a C-style comment at the beginning, listing the class name, feature, version information, date, author, and copyright notice:/* * Class name * Work ...