또 다른 Perl Switch 문
switch
문 호출을 설명했습니다.for (ref($thing)) {
/ARRAY/ && do {
some_array_thing($thing);
last;
};
/LIST/ && do {
some_list_thing($thing);
last;
};
## default;
some_scalar_thing($thing);
}
for
문이 $_
를 설정하는 방법을 설명한 후 "왜 그냥 $_
을 설정하지 않습니까?"라는 질문을 받았습니다.사실, 왜 안 되겠습니까? 여기에서 다음 코드를 사용할 수 있습니다. http://tpcg.io/KN9H82
use strict;
use warnings;
{
local $_ = 'foo';
/bar/ && do { print 'we got bar'; last };
/foo/ && do { print 'we got foo'; last };
/eek/ && do { print 'we got eek'; last };
print 'we dropped through';
}
출력
we got foo
제 질문은 다음과 같습니다.
switch
동의어에 대한 토론에서 왜 이것을 본 적이 없습니까? Reference
이 문제에 관하여(또 다른 Perl Switch 문), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/matthewpersico/yet-another-perl-switch-statement-54h3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)