"In general" is misleading.
In the particular case where you've no variables in the string, sure, maybe, but it's not an interesting use case.
The difference is substantial, but only when you make perl work harder to find the variable, hence the extra spaces in the string.#!/usr/bin/perl use strict; use warnings; use Benchmark ('cmpthese'); my $dqv = 0; my $sqv = 0; cmpthese(1000000, { double => \&dq, single => \&sq, }); sub dq { $dqv++; my $str = "see $dqv run + and $dqv"; } sub sq { $sqv++; my $str = 'see '.$dqv.' run + and '.$dqv; }
Rate double single double 943396/s -- -37% single 1492537/s 58% --
In reply to Re^2: Optimizing Perl Code - single versus double quotes really that important?
by j0wal
in thread Optimizing Perl Code - single versus double quotes really that important?
by MashMashy
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |