DictionaryForumContacts

   Russian
Terms for subject Programming containing имена методов | all forms | exact matches only | in specified order only
RussianEnglish
Атрибуты данных записываются поверх атрибутов методов с тем же именемData attributes override method attributes with the same name (см. An Introduction to Python – The Python Tutorial version 3.2 by Guido van Rossum and Fred L. Drake 2011 ssn)
в других методах периодически отслеживается путь от пула размещённых в памяти объектов ко всем объектам, на которые имеются ссылкиOther algorithms periodically follow a trail from the allocation pool to all referenced objects (см. "The Practice of Programming" by Brian W. Kernighan & Rob Pike <1999 ssn)
действительные имена методовvalid method names (ssn)
действительные имена методов объекта-экземпляраvalid method names of an instance object (ssn)
Действительные имена методов объекта-экземпляра зависят от его классаValid method names of an instance object depend on its class (см. An Introduction to Python – The Python Tutorial version 3.2 by Guido van Rossum and Fred L. Drake 2011 ssn)
изоляция расширяющих методов в отдельном пространстве именisolate extension methods in separate namespace (ssn)
имена локальных переменных различных методовnames of local variables of different methods (ssn)
имена методовmethod names (ssn)
имена переменных различных методовnames of variables of different methods (ssn)
иметь методыrespond to methods (IBM; контекстуальный перевод на русс. язык Alex_Odeychuk)
Классы могут иметь два вида методов и два вида переменныхClasses can have two kinds of methods and two kinds of variables (ssn)
метод с двойным подчёркиванием в имениdunder method (Alex_Odeychuk)
Методы интерфейса – это методы функционального блока, которые могут вызываться пользователем с помощью имени экземпляра IO-драйвераthe methods of interface are methods of the function block the user may call by the name of the instance of the IO-driver
Методы интерфейса – это методы функционального блока, которые могут вызываться пользователем с помощью имени экземпляра IO-драйвераthe methods of interface are methods of the function block the user may call by the name of the instance of the IO-driver
разные методы с одним и тем же именемmore than one method of the same name (ssn)
чтобы избежать конфликтов имен, которые в больших программах могут привести к тяжело обнаружимым ошибкам, полезно использовать своего рода соглашение, позволяющее минимизировать вероятность конфликтов. Например: называть методы именами, начинающимися с заглавной буквы, добавлять небольшую приставку в начало имен атрибутов данных возможно просто символ подчёркивания или использовать глаголы для методов и существительные для атрибутов данныхto avoid name conflicts, which may cause hard-to-find bugs in large programs, it is wise to use some kind of convention that minimizes the chance of conflicts. Possible conventions include capitalizing method names, prefixing data attribute names with a small unique string, or using verbs for methods and nouns for data attributes (см. An Introduction to Python – The Python Tutorial version 3.2 by Guido van Rossum and Fred L. Drake 2011 ssn)
чтобы иметь возможность добавлять лёгкие компоненты к тяжеловесному контейнерному объекту, контейнер должен использовать специальный метод getContentPaneadd lightweight components to a heavyweight container object, the container must use a special method getContentPane