Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Perl でオブジェクトのデータ構造を取得するにはどうすればよいですか?
strを使用してRでこれを簡単に行うことができます-
str(data)
Perl にも同様のものがあるのだろうか。
Data::Dumperモジュールを使用して、オブジェクトの構造をダンプできます。
Data::Dumper
use Data::Dumper; print Dumper($data);