Method

имя существительное 1) а) метод, способ; приём, средство Например: to apply / employ / use a method — применять, использовать метод to adopt a method — перенимать метод to give up / scrap a method — переставать пользоваться (каким-либо) методом modern / up-to-date method — современный метод obsolete / antiquated method — устаревший метод oral method — устный метод method for learning languages — метод изучения иностранного языка There is a definite method in her manner of interrogation. — В её манере задавать вопросы есть определённый метод. audiovisual method — аудиовизуальный метод case method — метод анализа (конкретных) ситуаций crude method — неточный, приблизительный метод deductive method — дедуктивный метод direct method — прямой метод grammar-translation method — грамматико-переводной метод изучения иностранного языка inductive method — индуктивный метод infallible method, sure method — надёжный, проверенный способ refined method, sophisticated method — изощрённый, тонкий метод rhythm method — метод естественного цикла (способ контрацепции) scientific method — научный метод Socratic method — сократический метод sound method — логичный, правильный метод unorthodox method — оригинальный, нешаблонный метод Синоним(ы): fashion, manner, mode, procedure, way, means б) (methods) методика (как направление научной деятельности) Например: teaching methods — методика обучения 2) система; порядок, строй Синоним(ы): system

Большой англо-русский словарь

Method

1) метод в ООП - именованная встроенная процедура класса (объекта), ассоциированная с его типом, которая изменяет состояние объекта или заставляет его отправить сообщение, т. е. реализует поведение объекта данного класса. Термин был впервые введён в языке SmallTalk. Большинство объектов имеют три типа методов: конструкторы (constructors), деструкторы (destructors) и методы поведения (behaviors). Методы также делятся на закрытые (private method) и открытые Смотри также: abstract method, class method, instance method, message 2), object, OOP, procedure 2) правило от греч. methodos - исследование

Англо-русский словарь компьютерных терминов

Method

имя существительное 1) общая лексика метод (способ достижения какой-либо цели, решения конкретной задачи; совокупность приемов или операций практического или теоретического освоения/познания действительности) 2) патенты и товарные знаки способ (изготовления) (как предмет защиты в патентном праве) Синоним(ы): mode, technique, device, approach, procedure

Англо-русский словарь экономических терминов

Method

метод; процедура; способ

Англо-русский научно-технический словарь

Method

1) метод; приём; способ 2) методика 3) технология 4) система

Англо-русский политехнический словарь

Method

noun Etymology: Middle English, prescribed treatment, from Latin methodus, from Greek methodos, from meta- + hodos way 1. a procedure or process for attaining an object: as a. (1) a systematic procedure, technique, or mode of inquiry employed by or proper to a particular discipline or art (2) a systematic plan followed in presenting material for instruction b. (1) a way, technique, or process of or for doing something (2) a body of skills or techniques 2. a discipline that deals with the principles and techniques of scientific inquiry 3. a. orderly arrangement, development, or classification; plan b. the habitual practice of orderliness and regularity 4. capitalized a dramatic technique by which an actor seeks to gain complete identification with the inner personality of the character being portrayed Synonyms: method, mode, manner, way, fashion, system mean the means taken or procedure followed in achieving an end. method implies an orderly logical arrangement usually in steps Example: effective teaching methods. mode implies an order or course followed by custom, tradition, or personal preference Example: the preferred mode of transportation. manner is close to mode but may imply a procedure or method that is individual or distinctive Example: an odd manner of conducting. way is very general and may be used for any of the preceding words Example: has her own way of doing things. fashion may suggest a peculiar or characteristic way of doing something Example: rushing about in his typical fashion. system suggests a fully developed or carefully formulated method often emphasizing rational orderliness Example: a filing system.

Merriam-Webster's Collegiate Dictionary

Method

In object-oriented programming, a function that can be called on an object of a given class. When a method is called (or invoked) on an object, the object is passed as an implicit argument to the method, usually referred to by the special variable "this". If the method is not defined in the object's class, it is looked for in that class's superclass, and so on up the class hierarchy until it is found. A subclass thus inherits all the methods of its superclasses. Different classes may define methods with the same name (i.e. methods may be polymorphic). Methods are sometimes called "object methods" or "instance methods". "Class methods" are methods that operate on objects of class "class". "Static methods" are not methods but normal functions packaged with the class.

Free Online Dictionary of Computing