1. ホーム
  2. スクリプト・コラム
  3. パール

Perlの1行コメントと複数行コメントの構文

2022-01-03 08:22:42

他の多くのプログラミング言語と同様に、Perlの1行コメントは、例えば#で始まります。

コピーコード コードは以下の通りです。

#print "Hello,World!";

しかし、複数行のコメント、言語によってコメントの書き方が違うんですよ、例えば。
Java,C/C++です。
コピーコード コードは以下の通りです。

/*
 *Note several lines
 *Note several lines
 *Note several lines
*/

Pythonです。
コピーコード コードは以下の通りです。

"""
 Use three double quotes and multi-line comments
 Use three double quotes, multi-line comments
 Use three double quotes, multi-line comments

"""

'''
 Use three single quotes and multi-line comments
 Use three single quotes, multi-line comments
 Use three single quotes, multi-line comments

'''


ルビーです。
コピーコード コードは以下の通りです。

=begin

This is a comment.
This is a comment, too.
This is a comment, too.

=end


シェルです。
コピーコード コードは以下の通りです。

# This is a comment.
# This is a comment, too.
# This is a comment, too.

Perlです。.NETの複数行コメント
コピーコード コードは以下の通りです。

 =

 Multi-line comment content
 Multi-line comment content
 Multi-line comment content

 =cut


注意:最初の等号の直後には、必ず文字が必要です。
例えば
コピーコード コードは以下の通りです。

#! C:\Perl\bin\perl -w 
use strict; 
use warnings; 
use String::Util ':all'; 
use 5.016; 
=my $element = " abc "; 
printf "<%s>\n", trim($element); 
printf "<%s>\n", trim($element, right => 0); 
printf "<%s>\n", trim($element, left => 0); 
=cut