Jump to content
  • 0

Javascript - классы, они есть или их нету в Javascript?


people2010
 Share

Question

9 answers to this question

Recommended Posts

  • 0

Ух ты какую я там интересную штуку нашел!

function Animal(name) {
this.name = name;
this.test = 'Animal';
alert(this.name + ' ' + this.test);
}

function Bird(name) {
Animal.call(this, name);
this.voice = 'чирик';
alert(this.name + ' ' + this.voice + ' ' + this.test);
}

Bird('Птичка');

И никаких, понимаешь, прототипов и конструкторов...

Link to comment
Share on other sites

  • 0

А ещё вот чё можно

function Animal(name) {
this.name = name;
this.test = 'Animal';
alert(this.name + ' ' + this.test);
}

function Bird(name) {
this.c(name);
this.voice = 'чирик';
alert(this.name + ' ' + this.voice + ' ' + this.test);
}

Bird.prototype.c = Animal
var obj = new Bird('Привет');

Link to comment
Share on other sites

  • 0
Ух ты какую я там интересную штуку нашел!

И никаких, понимаешь, прототипов и конструкторов...

JS позволяет много всего сделать... :(

На пхп класс описуется так:

Как такое же самое только на JAVASCRIPT?

function A ( ){
this.t = function () { alert('Hello my little friend') }
}
var a = new A();
a.t();

Link to comment
Share on other sites

  • 0

Скажите в этом месте:

this.t = function () { alert('Hello my little friend') }

1)Вот так описываются методы постоянно в классах?

то есть вначале нужно создать свойство, в данном случаи это t, а потом этому свойству присвоить функцию, которая превращается в метод?

2)Почему нельзя объявить без конструкции this свойство t?

3)Зачем присваивать свойству t метод без имени?

Link to comment
Share on other sites

  • 0
1)Вот так описываются методы постоянно в классах?

то есть вначале нужно создать свойство, в данном случаи это t, а потом этому свойству присвоить функцию, которая превращается в метод?

t - это не свойство, это метод

2)Почему нельзя объявить без конструкции this свойство t?

Это особенности JavaScript

3)Зачем присваивать свойству t метод без имени?

t - это и будет имя метода.

Link to comment
Share on other sites

  • 0

а)Не знал, что так методы странно объявляются внутри класса или внутри конструктора происходит вот то объявление выше?

б)Читал на Javascript.ru что this это объект,скажите ясно, зачем нужен this, почему без него не хочет идти?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy