Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
java.lang.reflect

Class Array


  • public final class Array
    extends Object
    The Array class provides static methods to dynamically create and access Java arrays.

    Array permits widening conversions to occur during a get or set operation, but throws an IllegalArgumentException if a narrowing conversion would occur.

    • Method Summary

      Methods 
      Modifier and Type Method and Description
      static Object get(Object array, int index)
      Returns the value of the indexed component in the specified array object.
      static boolean getBoolean(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a boolean.
      static byte getByte(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a byte.
      static char getChar(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a char.
      static double getDouble(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a double.
      static float getFloat(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a float.
      static int getInt(Object array, int index)
      Returns the value of the indexed component in the specified array object, as an int.
      static int getLength(Object array)
      Returns the length of the specified array object, as an int.
      static long getLong(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a long.
      static short getShort(Object array, int index)
      Returns the value of the indexed component in the specified array object, as a short.
      static Object newInstance(Class<?> componentType, int... dimensions)
      Creates a new array with the specified component type and dimensions.
      static Object newInstance(Class<?> componentType, int length)
      Creates a new array with the specified component type and length.
      static void set(Object array, int index, Object value)
      Sets the value of the indexed component of the specified array object to the specified new value.
      static void setBoolean(Object array, int index, boolean z)
      Sets the value of the indexed component of the specified array object to the specified boolean value.
      static void setByte(Object array, int index, byte b)
      Sets the value of the indexed component of the specified array object to the specified byte value.
      static void setChar(Object array, int index, char c)
      Sets the value of the indexed component of the specified array object to the specified char value.
      static void setDouble(Object array, int index, double d)
      Sets the value of the indexed component of the specified array object to the specified double value.
      static void setFloat(Object array, int index, float f)
      Sets the value of the indexed component of the specified array object to the specified float value.
      static void setInt(Object array, int index, int i)
      Sets the value of the indexed component of the specified array object to the specified int value.
      static void setLong(Object array, int index, long l)
      Sets the value of the indexed component of the specified array object to the specified long value.
      static void setShort(Object array, int index, short s)
      Sets the value of the indexed component of the specified array object to the specified short value.

      Erste Seite von API Java Inhaltsverzeichnis Haut

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/lang/reflect/array.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut