Comment Syntax: Difference between revisions
Jump to navigation
Jump to search
(→X: XML) |
(→X: XML) |
||
| Line 89: | Line 89: | ||
References | References | ||
<references/> | <references/> | ||
further reading | |||
* [http://blog.csdn.net/haoel/article/details/5782907 五種應該避免的代碼注釋 - 陳皓專欄](簡體) | |||
[[Category:Web_Dev]] [[Category:Programming]] | [[Category:Web_Dev]] [[Category:Programming]] | ||
Revision as of 10:00, 2 May 2013
程式的註解語法(Comment Syntax) << Testing
C: CSS
CSS Code: viewable when user view the HTML source code[1]
/* multiple lines comments */
Conditional Comments for IE
D: DOS
DOS Command Code[2]:
REM [comment] ex: REM single line comment
H: HTML
HTML Code: viewable when user view the HTML source code
<!-- This is an HTML Comment --> <!-- multiple lines -->
J: Javascript
Javascript Code: viewable when user view the HTML source code
//single line comment /* multiple lines */
P: Perl, PHP
Perl Code[3]:
#single line comment
PHP Code: not viewable when user view the HTML source code[4]
# single line comment // another single line comment /* multiple lines */
php.ini
; single line comment
S: SIKULI, SQL
SIKULI Code:
#single line comment
SQL Command / MySQL Comment Syntax (MySQL 5.0)[5]:
/* multiple lines */
V: VBScript
VBScript Coding Conventions, VBScript Tutorial - Operators
' single line comment
X: XML
<!-- multiple lines -->
References
further reading