Comment

1. имя существительное 1) комментарий, замечание, примечание, ссылка Например: explanatory comment — пояснительный комментарий program comment [информатика и компьютерные технологии] — комментарий к программе no comment — без комментариев (стандартный ответ на вопросы журналистов) Синоним(ы): annotation, remark, commentary 2) [употребляется с глаголами в единственном числе] комментарии, пояснения (объяснительный или иллюстративный материал к книге) 3) комментирование 4) критика; критический разбор Синоним(ы): animadversion, criticism 5) [употребляется с глаголами в единственном числе] суждения, толки 6) [лингвистика] сообщаемое о предмете новое, рема Синоним(ы): rheme 2. глагол 1) снабжать комментарием, делать комментарий, снабжать примечаниями Например: The treatise was commented and abridged. — Научный труд был снабжён комментарием и сокращён. Синоним(ы): annotate 2) высказывать своё мнение

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

Comment

комментарий (от лат. commentarium - объяснение) в программировании - языковая конструкция, позволяющая включать в исходный текст программы или в командный файл поясняющий текст с целью их документирования или улучшения читаемости. При трансляции исходного текста программы и при исполнении командного файла комментарии игнорируются Смотри также: batch file, remark, source code Например: It's good programming style to include comments in your program to explain things that might not be obvious to someone else — В программировании считается хорошим стилем включать в свою программу комментарии для объяснения тех вещей, которые могут показаться не очевидными другим людям

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

Comment

комментарий; комментировать, снабжать комментарием

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

Comment

[вычислительная техника] комментарий, примечание

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

Comment

I. noun Etymology: Middle English, from Late Latin commentum, from Latin, invention, from neuter of commentus, past participle of comminisci to invent, from com- + -minisci (akin to ment-, mens mind) — more at mind 1. commentary 2. a note explaining, illustrating, or criticizing the meaning of a writing 3. a. an observation or remark expressing an opinion or attitude Example: critical comments b. a judgment expressed indirectly Example: sees the film as a comment on modern values II. verb transitive verb to make a comment on Example: the discovery…is hardly commented by the press — Nation intransitive verb to explain or interpret something by comment Example: commenting on recent developments

Merriam-Webster's Collegiate Dictionary

Comment

(Or "remark") Explanatory text embedded in program source (or less often data) intended to help human readers understand it. Code completely without comments is often hard to read, but code with too many comments is also bad, especially if the comments are not kept up-to-date with changes to the code. Too much commenting may mean that the code is over-complicated. A good rule is to comment everything that needs it but write code that doesn't need much of it. Comments that explain __why__ something is done and how the code relates to its environment are useful. A particularly irksome form of over-commenting explains exactly what each statement does, even when it is obvious to any reasonably competant programmer, e.g. /* Open the input file */ infd = open(input_file, O_RDONLY);

Free Online Dictionary of Computing