DictionaryForumContacts

   Russian
Terms for subject Programming containing имя метода | all forms | exact matches only | in specified order only
RussianEnglish
ассоциация имени метода или имени функционального блока с реализацией метода или функционального блокаassociation of a method name or function block name with a method or a function block implementation (связывание имён ssn)
Атрибуты данных записываются поверх атрибутов методов с тем же именем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)
действительные имена методов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)
имя методаname of method (ssn)
имя методаmethod name (ssn)
имя метода для вызоваname of the method to call (ssn)
имя прототипа методаname of a method prototype (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)