Що таке ПІДКЛАСУ Англійською - Англійська переклад

Іменник
sub-class
підкласу

Приклади вживання Підкласу Українська мовою та їх переклад на Англійською

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
Приберіть оголошення наслідування з підкласу.
Remove the inheritance declaration from the subclass.
Змініть методи підкласу так, щоб вони використовували об'єкт суперкласу, замість this.
Change the subclass methods so that they use the superclass object instead of this.
Людина теж належить до царства тварин, до підкласу звірі.
Man, too, belongs to the animal kingdom, to the subclass animals.
GZ Peg є змінною підкласу SRa та зорею спектрального класу S з максимальною зоряною величиною+4, 95.
GZ Peg is an SRa variable and S-type star with a maximum magnitude of 4.95.
Компоненти у React можуть бути визначені за допомогою підкласу React.
React components can be defined by subclassing React.
У класах JavaScript при визначенні конструктора підкласу ви завжди повинні викликати super.
In JavaScript classes, you need to always call super when defining the constructor of a subclass.
Викликайте конструктор суперкласу в конструкторах підкласу.
Call the superclass constructor in the subclass constructors.
Казуари належать до підкласу безкілеві птахів, до якого відносяться до того ж ему, нанду, страуси, моа і ківі.
Cassowaries belong to a subclass of birds ratites, which belong to the same emu, rhea, Ostriches, moa and kiwi.
Дводишні(відомі як salamanderfish)- прісноводні риби, що належать до підкласу Dipnoi.
Lungfish(also known as salamanderfish) are freshwater fish belonging to the subclass Dipnoi.
Заміна підкласу полямиПроблема: У вас є підкласи, які відрізняються тільки методами, що повертають дані-константи.
Replace Subclass with FieldsProblem: You have subclasses differing only in their(constant-returning) methods.
A1 Код літер для класу технічної сфери A2 Код літер дляосновного класу A3 Код літер для підкласу.
A1 Letter code for technical area class A2 Letter code formain class A3 Letter code for sub-class.
Якась фіча була прибрана з підкласу, якийсь метод«переїхав» в суперклас, і ось ви вже маєте два практично однакових класи.
A feature was removed from a subclass, a method was moved to the superclass… and now you have two look-alike classes.
Здоров'ю і навіть життю популярної промислової риби загрожує Lepeophtheirus salmonis-рачок з підкласу веслоногих.
The health and even life of the popular commercial fish is threatened by Lepeophtheirus salmonis,a crustacean from the sub-class of copepods.
Коли потрібна також функціональність підкласу, замініть батьківський конструктор конструктором підкласу.
When the functionality of a subclass is necessary,replace the parent constructor with the subclass constructor.
Суть рефакторингу зводиться до того, щоб розділити обидва класи, і зробити суперклас помічником підкласу, а не його батьком.
In essence,this refactoring technique splits both classes and makes the superclass the helper of the subclass, not its parent.
Високий рівень освіти- відмітна ознака підкласу, хоча багато підприємців і власники бізнесу не мають вищої освіти.
High level of education is the hallmark of a subclass, although many entrepreneurs and business owners do not have higher education.
Відокремлення підкласу допоможе, якщо частина поведінки великого класу може мати альтернативні реалізації або використовується лише в окремих випадках.
Extract Subclass helps if part of the behavior of the large class can be implemented in different ways or is used in rare cases.
Паралельні ієрархії наслідуванняВсякий раз при створенні підкласу якогось класу доводиться створювати ще один підклас для іншого класу.
Parallel Inheritance HierarchiesWhenever you create a subclass for a class, you find yourself needing to create a subclass for another class.
Реалізуйте кожен константний метод у батьківському класі так, щоб він повертав значення відповідного поля,а потім видаліть метод з підкласу.
Implement each constant method in the parent class so that it returns the value of the corresponding field.Then remove the method from the subclass.
Для кожного підкласу ієрархії потібно перевизначити метод, ща містить умовний оператор, і скопіювати туди код відповідної гілки оператора.
For each hierarchy subclass, redefine the method that contains the conditional and copy the code of the corresponding conditional branch to that location.
При цьому, всі перебуваючі у строю БКА, з 1965 р. також були перекласифіковані в АКА,фактично ставши родоначальниками«нового» підкласу бойових катерів.
With all of this all are in service with the BCA in 1965 were also reclassified AKA,almost becoming the founders of the"new" subclass combat boats.
Якщо конструктор підкласу має якусь додаткову функціональність, застосуйте вбудовування методу для вбудовування конструктора в фабричний метод суперкласу.
If the subclass constructor has additional functionality, use Inline Method to incorporate the constructor into the superclass factory method.
Якщо ви бачите, що метод потрібний більш ніж одному підкласу(але не всім), можливо, варто створити проміжний підклас і перемістити метод в нього.
If you see that a method is needed by more than one subclass, but not all of them, it may be useful to create an intermediate subclass and move the method to it.
Зведення до проблеми Model checking- обоє є важливими проблемами обходу простору станів,а також класична проблема планування відповідає підкласу задач перевірка моделей.
Reduction to Model checking- both are essentially problems of traversing state spaces,and the classical planning problem corresponds to a subclass of model checking problems.
Крокодили- це одні з небагатьох, хто вижив представників підкласу архозавров, а їх найближчі родичі- це птахи, які також є нащадками або родичами архозавров.
Crocodiles are one of the few surviving representatives of the subclass of archosaurs, and their closest relatives are birds who are also descendants or relatives of archosaurs.
У Java підкласи не можуть наслідувати конструктор,тому ви не можете просто застосувати підйом методу до конструктора підкласу і видалити його після переміщення усього коду конструктора в суперклас.
In Java, subclasses cannot inherit a constructor, so you cannot simply apply Pull Up Method to the subclass constructor and delete it after removing all the constructor code to the superclass.
Вчені вважають, що більшість об'єктів, які об'єдналися, щоб створити Землю, були з вузької зони космосу і були схожі один на одного,оскільки належали до підкласу метеоритів, званих енстатіт хондріти.
Scientists had thought that most of the bodies that merged to make Earth formed from a narrow zone in space and were similar to each other,belonging to a subclass of meteorites called enstatite chondrites.
A1 Код літер для класу технічної сфери A2 Код літер дляосновного класу A3 Код літер для підкласу Літерний код A1 необов'язковий, якщо всі документи знаходяться в тій же технічній області.
A1 Letter code for technical area class A2 Letter code formain class A3 Letter code for sub-class The letter code A1 is optional, if all documents are from the same technical area.
У більшості мов програмування конструктор підкласу може мати свій власний список параметрів, відмінний від параметрів суперкласу, тому ви повинні створити конструктор суперкласу тільки з тими параметрами, які йому дійсно потрібні.
In most programming languages, a subclass constructor can have its own list of parameters different from the parameters of the superclass. Therefore you should create a superclass constructor only with the parameters that it truly needs.
Зведення до проблеми propositional satisfiability(satplan). зведення до проблеми Model checking- обоє є важливими проблемами обходу простору станів,а також класична проблема планування відповідає підкласу задач перевірка моделей.
Reduction to the propositional satisfiability problem(satplan). reduction to Model checking- both are essentially problems of traversing state spaces,and the classical planning problem corresponds to a subclass of model checking problems.
Результати: 58, Час: 0.0178

Найпопулярніші словникові запити

Українська - Англійська