diff options
Diffstat (limited to 'files/de/glossary/constructor/index.html')
-rw-r--r-- | files/de/glossary/constructor/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/files/de/glossary/constructor/index.html b/files/de/glossary/constructor/index.html new file mode 100644 index 0000000000..7c719b55ea --- /dev/null +++ b/files/de/glossary/constructor/index.html @@ -0,0 +1,47 @@ +--- +title: Konstruktor +slug: Glossary/Konstruktor +translation_of: Glossary/Constructor +--- +<p>Ein <strong>Konstruktor</strong> gehört zu einer Instanz eines bestimmten Klassen-{{glossary("object","Objekts")}}.</p> + +<p>Der Konstrutktor instanziiert dieses Objekt und bietet Zugriff auf seine privaten Informationen. Das Konzept des Konstruktors findet in den meisten {{glossary("OOP","Objekt-orientierten Programmiersprachen")}} Anwendung. Im Allgemeinen wird ein Konstruktor in {{glossary("JavaScript")}} in der Instanz einer {{glossary("class","Klasse")}} deklariert.</p> + +<h2 id="Syntax">Syntax</h2> + +<pre class="brush: js">// This is a generic default constructor class Default +function Default() { +} + +// This is an overloaded constructor class Overloaded +// with parameter arguments +function Overloaded(arg1, arg2, ...,argN){ +} +</pre> + +<p>Um einen Konstruktor aufzurufen, verwenden Sie den <code>new</code> operator, welcher einer {{glossary("variable","Variable")}} eine neue {{glossary("object reference","Objekt-Referenz")}} zuweist.</p> + +<pre class="brush: js">function Default() { +} + +// A new reference of a Default object assigned to a +// local variable defaultReference +var defaultReference = new Default(); +</pre> + +<p> </p> + +<h2 id="Siehe_auch">Siehe auch</h2> + +<h3 id="Generelles_Wissen">Generelles Wissen</h3> + +<ul> + <li>{{Interwiki("wikipedia", "Constructor_%28object-oriented_programming%29", "Konstruktor")}} auf Wikipedia</li> +</ul> + +<h3 id="Technische_Referenz">Technische Referenz</h3> + +<ul> + <li><a href="/en-US/docs/Web/JavaScript/Introduction_to_Object-Oriented_JavaScript#The_Constructor">The constructor in object oriented programming for JavaScript</a> on MDN</li> + <li><a href="/en-US/docs/Web/JavaScript/Reference/Operators/new">New operator in JavaScript</a> on MDN</li> +</ul> |