Subject | English | Russian |
progr. | A constructor is a good example of a method that is shared by all instances of a class | Конструктор – это хороший пример метода, совместно используемого всеми экземплярами класса (ssn) |
progr. | aggregation relationship: The relationship of an aggregate object to its parts. A class defines this relationship for its instances e.g., aggregate objects | отношение агрегирования: отношение агрегата и его частей. Класс определяет такое отношение для своих экземпляров, то есть агрегированных объектов (см. Design Patterns: Elements of Reusable Object-Oriented Software by Erich Gamma, Richard Helm, Ralph Johnson, John M. Vlissides ssn) |
progr. | call of a method of an instance of another class | вызов метода экземпляра другого класса (ssn) |
progr. | call of a method of an instance of another class | вызов метода из экземпляра другого класса (ssn) |
progr. | call of a method of the own class instance | вызов метода из экземпляра собственного класса (ssn) |
progr. | create a new instance of a class | создавать новый экземпляр класса (Alex_Odeychuk) |
progr. | direct instance of a class | прямой экземпляр класса (объект данного класса ssn) |
progr. | external call of a method of an instance of another class | внешний вызов метода экземпляра другого класса (ssn) |
progr. | external call of a method of an instance of another class | внешний вызов метода из экземпляра другого класса (ssn) |
progr. | if the referenced instance is of a class or function block type that implements the interface, the result is a valid reference to this instance | если экземпляр, на который дана ссылка, принадлежит классу или типу функционального блока, реализующего интерфейс, то результат является действительной ссылкой на данный экземпляр (см. IEC 61131-3:2013 ed. 3.0 Programmable Controllers – Programming Languages ssn) |
progr. | in programs written in the Java programming language, an instance of a class is created using the new operator followed by the class name | в программах на языке Java экземпляр класса создаётся с помощью оператора new, за которым следует имя класса |
progr. | instance methods of a class | методы экземпляра определённого класса (ssn) |
progr. | instance of a class | представитель класса (ssn) |
progr. | instance of a class | экземпляр класса (ssn) |
progr. | instance of a template engine class | экземпляр класса-шаблонизатора (Alex_Odeychuk) |
progr. | internal call of a method of the own class instance | внутренний вызов метода из экземпляра собственного класса (ssn) |
progr. | method that is shared by all instances of a class | метод, совместно используемый всеми экземплярами класса (ssn) |
progr. | mix in a trait dynamically when creating a new instance of a class | выполнять динамическое подмешивание типажа при создании нового экземпляра класса (Alex_Odeychuk) |