Jump to content
  • 0

get/set и его использование в Javascript


denis_alekss
 Share

Question

Решил понять смысл get/set, написал небольшой код, правильно ли в нем используется
 метод get/set или нужно по-другому, если по-другому, напишите пож. как лучше в моем коде.
 

<script>
class Beverage{
    constructor(options){
        this.name = options.name;
    }
    returnName() {console.log(this.name)}
}

class Price extends Beverage
{
    constructor(options){
        super(options)
        this.price = options.price;
        this.bos = options.bos;
    }

    result() {console.log("Напиток " + this.name + " Цена" + this.price + "Директор - " + this.bos)}
    
    get Bos(){
    {return result()}
    }    
    
    set Bos(newBos){
    const newbos = newBos.split(' ');
    this.bos = newbos[0];
    this.bos = newbos[1]
   }    
}

const bev = new Beverage({name: 'Coca-cola'})
bev.returnName()

const price = new Price({name: 'Fanta',price: " - 200 евро ",bos: "Стивен"})
price.result()

price.bos = "Майкл Джексон"
price.result()
</script>

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
1 час назад, denis_alekss сказал:

Когда нужно его вообще использовать get/set?

Давайте я вам приведу нормальный пример из того же JavaScript, но более раннего поколения, где можно адекватно проследить смысл.

 

Obj = {

		get future() {

			return null;

		},

		set data( a = true ) {

		}

};

У гетера нет аргументов. Он как бы и не нужен, но приколу всем у кого JavaScript головного мозга и эйфория от высокого ООП, а сетер ни чего не возвращает. Это можно использовать для смысловой подсветки кода, если вам это нравится.

Лично мне, тот class, который вдрочили в ECMAScript с большим опозданием показался гораздо глупее литерал объекта, который умеет делать protected поля и работает с теми же Set и Get.

Он и расширяется проще и работает мудрее в плане интеграции генераторов, если они нужны или стрелочных функций, когда this не нужен.

Edited by Full-R
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