[Moscow.pm] refactoring

Ilya Chesnokov chesnokov.ilya на gmail.com
Чт Окт 15 04:50:41 PDT 2015


15 октября 2015 г., 5:43 пользователь Nikolay Mishin <mi на ya.ru> написал:
> Hi Moscow.PM!
>
> Существует ли какой-либо сбособ сделать более читаемым такой код?:
>
>     push @person_row, (defined $person->get_father()) ? $person->get_father()->get_id() : undef;
>     push @person_row, (defined $person->get_mother()) ? $person->get_mother()->get_id() : undef;
>     push @person_row, ($person->get_email(), $person->get_homepage());

И так сойдет. Если такое часто используется, то может быть имеет смысл
написать методы get_father_id / get_mother_id.

>     my $date = "";
>     if(defined $person->get_date_of_birth()) {
>       my $date_of_birth = $person->get_date_of_birth();
>       $date .= defined $date_of_birth->day ? $date_of_birth->day."/" : "";
>       $date .= defined $date_of_birth->month ? $date_of_birth->month."/" : "";
>       $date .= defined $date_of_birth->year ? $date_of_birth->year : "";
>     }

my $date = $person->get_date_of_birth &&
$person->get_date_of_birth->DateTime->dmy('/');

(если я правильно понял, что get_date_of_birth() возвращает объект
класса Ftree::Date::Tiny)

> источник https://github.com/mishin/Ftree-cpan/blob/master/lib/Ftree/Exporters/ExcelExporter.pm#L53
>
> --
> С уважением
> Николай Мишин
>
> --
> Moscow.pm mailing list
> moscow-pm на pm.org | http://moscow.pm.org



-- 
Best regards,
Ilya Chesnokov


Подробная информация о списке рассылки Moscow-pm