Programmierung in Ruby

Der Leitfaden der Pragmatischen Programmierer

class NilClass
Parent: Object
Version: 1.6

Index:

& ^ | nil? to_a to_i to_s


Die Klasse des Singelton-Objekts nil.

instance methods
& nil& einObjekt-> false

And---Gibt false zurück. Da einObjekt ein Argument in einem Methodenaufruf ist, wird es immer evaluiert; es gibt für diesen Fall keine abgekürzte Evaluierung.

nil && puts("logical and")
nil &  puts("and")
produces:
and

^ nil^ einObjekt-> true oder false

Exclusives Oder---Gibt false zurück, wenn einObjekt gleich nil oder false ist, anderenfalls wird true zurück gegeben.

| nil| einObjekt-> true or false

Oder---Gibt false zurück, wenn einObjekt gleich nil oder false ist, sonst true.

nil? nil.nil? -> true

Gibt immer true zurück.

to_a nil.to_a -> []

Gibt immer ein leeres Array zurück.

to_i nil.to_i -> 0

Gibt immer Null zurück.

to_s nil.to_s -> ""

Gibt immer einen leeren String zurück.


Extracted from the book "Programming Ruby - The Pragmatic Programmer's Guide"
Übersetzung: Carsten Schinzer
Für das englische Original:
© 2000 Addison Wesley Longman, Inc. Released under the terms of the Open Publication License V1.0. That reference is available for download.
Diese Lizenz sowie das Original vom Herbst 2001 bilden die Grundlage der Übersetzung
Es wird darauf hingewiesen, dass sich die Lizenz des englischen Originals inzwischen geändert hat.
Für die deutsche Übersetzung:
© 2002 Jürgen Katins
Der Copyright-Eigner stellt folgende Lizenzen zur Verfügung:
Nicht-freie Lizenz:
This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder. Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.
Freie Lizenz:
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License".