4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

各言語のコメントアウトを一覧にまとめる

Last updated at Posted at 2019-09-08

はじめに

コーディング中は良いですが、しばらく触れないと忘れるため、まとめます。

コメントアウト一覧

言語 コメントアウト 補足
HTML
CSS /* comment */
Javascript // comment 1行コメント
/* comment */
Python # comment 1行コメント
''' comment '''
""" comment """
Java // comment 1行コメント
/* comment */
PHP // comment 1行コメント
# comment 1行コメント
/* comment */
SQL -- comment 1行コメント (※1)
# comment 1行コメント (※2)
/* comment */
Unix Shell # comment 1行コメント
vim " comment 1行コメント
MS-DOS REM comment 1行コメント
:: comment 1行コメント
PowerShell # comment 1行コメント
<# comment #>
VBA ' comment 1行コメント
JCL //" comment 1行コメント
Markdown [](comment) 1行コメント
(※3)

(※1) --の後ろに半角スペース要注意
(※2) MySQLが対応
(※3) HTMLと同じ記法が扱いやすい
(1行コメント内でバックスラッシュを区切っても複数行コメントは可能)

参考

[docs.python.org : 字句解析 - コメント]
(https://docs.python.org/ja/3/reference/lexical_analysis.html?highlight=%E3%82%B3%E3%83%A1%E3%83%B3%E3%83%88#comments)
[Codecampus : Pythonでのコメントアウトの方法とは?]
(https://blog.codecamp.jp/python-comment)
[JavaScriptのコメントはこう書くべし! 活用法まで徹底解説]
(https://www.sejuku.net/blog/28449)
[【Java】コメントの種類と書き方]
(https://qiita.com/mtanabe/items/2e52e6e162d28df8437f#java%E3%81%AE%E3%82%B3%E3%83%A1%E3%83%B3%E3%83%88%E3%81%AE%E7%A8%AE%E9%A1%9E)
[IBM support : DB2 SQLステートメント]
(https://www.ibm.com/support/knowledgecenter/ja/SSEPGG_11.5.0/com.ibm.db2.luw.sql.ref.doc/doc/c0056402.html)
[IBM support : JCLステートメント]
(https://www.ibm.com/support/knowledgecenter/ja/SSLTBW_2.2.0/com.ibm.zos.v2r2.ieab600/iea3b6_JCL_statements.htm)
[MySQLのコメント構文]
(https://qiita.com/ques0942/items/d89de1ff7c92b4810d10)
[kin29.info : MySQLとPostgreSQLのコメントの書き方のちがい]
(https://kin29.info/mysql%E3%81%A8postgresql%E3%81%AE%E3%82%B3%E3%83%A1%E3%83%B3%E3%83%88%E3%81%AE%E6%9B%B8%E3%81%8D%E6%96%B9%E3%81%AE%E3%81%A1%E3%81%8C%E3%81%84/)
[あおきのTechメモ : バッチファイルの「::」コメント]
(http://aoki1210.hatenablog.jp/entry/20080622/p1)
[バヤシタ : PowerShellコメントアウトの書き方]
(https://bayashita.com/p/entry/show/36)
[Markdown記法でコメントアウトする]
(https://qiita.com/yu0819ki/items/e1e1d20cedc68706ba23)

おわりに

シェルスクリプトでは、このような技で複数行コメントアウトできるそうです。勉強になります。
[bashで複数行コメントアウトする方法]
(https://qiita.com/imura81gt/items/a2998147bd7ae8056b26)

4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?