--- title: Classes slug: Web/JavaScript/Reference/Classes tags: - Classes - Constructors - ECMAScript6 - Inheritance - Intermediate - JavaScript - Kalıtım - NeedsTranslation - TopicStub - sınıf translation_of: Web/JavaScript/Reference/Classes ---
ECMAScript 2015 ile tanıtılan Javascript sınıfları, aslında halihazırdaki prototype temelli kalıtımın, sözdizi daha kolaylaştırılmış halidir. Class sözdizimi yeni bir nesne tabanlı Javascript modeli sunmamaktadır.
Aslında sınıflar class oluşturmak için kullanılan özel fonksiyonlardır. Javascript sınıfları klasik fonksiyon tanımladığınız gibi tanımlayabilir veya fonksiyonlar ile yapabildiğiniz gibi bir değişkene atayabilirsiniz.
Bir sınıf tanımlamanın bir yolu class
ifadesini sınıf adınızla birlikte kullanmaktır. (Örn: Dikdortgen)
class Dikdortgen { constructor(yukseklik, genislik) { this.yukseklik = yukseklik; this.genislik = genislik; } }
Sınıf tanımları ve fonksiyon tanımları arasındaki önemli bir fark, fonksiyonlara tanımlandığı satırdan önce {{Glossary("Hoisting", "erişim sağlanabilir")}}. Sınıflara tanımlandığı satırdan önce erişilemezler. Önce sınıfları tanımlamanız ve ardından ona erişmeniz gerekir. Aksi halde aşağıdakine benzer bir hatayla karşılaşırsınız. {{jsxref("ReferenceError")}}:
var p = new Galeri(); // ReferenceError class Galeri {}
Bir class'ı tanımlamanın bir başka yolu ise "class" ifadesidir. Class ifadelerine isim verilebilir. İsimli olan bir class ifadesi class body'sinin localidir.
// isimsiz class var Dikdortgen = class { constructor(yukseklik, genislik) { this.yukseklik= yukseklik; this.genislik= genislik; } }; // isimli class var Dikdortgen = class Dikdortgen { constructor(yukseklik, genislik) { this.yukseklik= yukseklik; this.genislik= genislik; } };
The body of a class is the part that is in curly brackets {}
. This is where you define class members, such as methods or constructors.
The bodies of class declarations and class expressions are executed in strict mode.
The constructor
method is a special method for creating and initializing an object created with a class
. There can only be one special method with the name "constructor" in a class. A {{jsxref("SyntaxError")}} will be thrown if the class contains more than one occurrence of a constructor
method.
A constructor can use the super
keyword to call the constructor of a parent class.
See also method definitions.
class Polygon { constructor(height, width) { this.height = height; this.width = width; } get area() { return this.calcArea(); } calcArea() { return this.height * this.width; } }
The static
keyword defines a static method for a class. Static methods are called without instantiating their class and are also not callable when the class is instantiated. Static methods are often used to create utility functions for an application.
class Point { constructor(x, y) { this.x = x; this.y = y; } static distance(a, b) { const dx = a.x - b.x; const dy = a.y - b.y; return Math.sqrt(dx*dx + dy*dy); } } const p1 = new Point(5, 5); const p2 = new Point(10, 10); console.log(Point.distance(p1, p2));
extends
The extends
keyword is used in class declarations or class expressions to create a class as a child of another class.
class Animal { constructor(name) { this.name = name; } speak() { console.log(this.name + ' makes a noise.'); } } class Dog extends Animal { speak() { console.log(this.name + ' barks.'); } }
super
The super
keyword is used to call functions on an object's parent.
class Cat { constructor(name) { this.name = name; } speak() { console.log(this.name + ' makes a noise.'); } } class Lion extends Cat { speak() { super.speak(); console.log(this.name + ' roars.'); } }
Abstract subclasses or mix-ins are templates for classes. An ECMAScript class can only have a single superclass, so multiple inheritance from tooling classes, for example, is not possible. The functionality must be provided by the superclass.
A function with a superclass as input and a subclass extending that superclass as output can be used to implement mix-ins in ECMAScript:
var CalculatorMixin = Base => class extends Base { calc() { } }; var RandomizerMixin = Base => class extends Base { randomize() { } };
A class that uses these mix-ins can then be written like this:
class Foo { } class Bar extends CalculatorMixin(RandomizerMixin(Foo)) { }
Specification | Status | Comment |
---|---|---|
{{SpecName('ES6', '#sec-class-definitions', 'Class definitions')}} | {{Spec2('ES6')}} | Initial definition. |
{{SpecName('ESDraft', '#sec-class-definitions', 'Class definitions')}} | {{Spec2('ESDraft')}} |
{{CompatibilityTable}}
Feature | Chrome | Firefox (Gecko) | Edge | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|---|
Basic support | {{CompatChrome(42.0)}}[1] {{CompatChrome(49.0)}} |
45 | 13 | {{CompatNo}} | {{CompatNo}} | {{CompatSafari(9.0)}} |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
---|---|---|---|---|---|---|
Basic support | {{CompatNo}} | 45 | {{CompatUnknown}} | {{CompatUnknown}} | 9 | {{CompatChrome(42.0)}}[1] {{CompatChrome(49.0)}} |
[1] Requires strict mode. Non-strict mode support is behind the flag "Enable Experimental JavaScript", disabled by default.
class
declarationclass
expression