DEBFIND Suche nach Debian-Paketen

Suchplatform für Softwarepakete und Archive Debian-basierter Linux-Distributionen

beta ! Diese website wird noch weiterentwickelt.

Liste aller Kategorien/Sektionen | Suchmaske | Haftungsausschluß

Paketbeschreibung


Paketnamelibuniversal-can-perl
Beschreibungsafer version of UNIVERSAL::can
Archiv/RepositoryOffizielles Ubuntu Archiv lucid (universe)
Version1.16-1
Sektionuniverse/perl
Prioritätoptional
Installierte Größe72 Byte
Hängt ab vonperl
Empfohlene Pakete
PaketbetreuerUbuntu Developers
Quelle
Paketgröße12914 Byte
Prüfsumme MD52e20c0010d926183f95ce7095802ebf2
Prüfsumme SHA1ef5b923b689502c5426dac9a49be161266ffd52f
Prüfsumme SHA256c53813203db6f42182391801a593947c7972c213d6342d1c2d85d6b68f83265f
Link zum Herunterladenlibuniversal-can-perl_1.16-1_all.deb
Ausführliche BeschreibungThe UNIVERSAL class provides a few default methods so that all objects can use them. Object orientation allows programmers to override these methods in subclasses to provide more specific and appropriate behavior. . Some authors call methods in the UNIVERSAL class on potential invocants as functions, bypassing any possible overriding. This is wrong and one should not do it. Unfortunately, not everyone heeds this warning and their bad code can break good code. . This module replaces UNIVERSAL::can() with a method that checks to see if the first argument is a valid invocant (whether an object -- a blessed referent -- or the name of a class). If so, and if the invocant's class has its own can() method, it calls that as a method. Otherwise, everything works as you might expect. . If someone attempts to call UNIVERSAL::can() as a function, this module will emit a lexical warning (see perllexwarn) to that effect. You can disable it with no warnings; or no warnings 'UNIVERSAL::isa';, but don't do that; fix the code instead.


Impressum
Linux is a registered trademark of Linus Torvalds