FIXME - definition. What is FIXME
Diclib.com
قاموس ChatGPT
أدخل كلمة أو عبارة بأي لغة 👆
اللغة:

ترجمة وتحليل الكلمات عن طريق الذكاء الاصطناعي ChatGPT

في هذه الصفحة يمكنك الحصول على تحليل مفصل لكلمة أو عبارة باستخدام أفضل تقنيات الذكاء الاصطناعي المتوفرة اليوم:

  • كيف يتم استخدام الكلمة في اللغة
  • تردد الكلمة
  • ما إذا كانت الكلمة تستخدم في كثير من الأحيان في اللغة المنطوقة أو المكتوبة
  • خيارات الترجمة إلى الروسية أو الإسبانية، على التوالي
  • أمثلة على استخدام الكلمة (عدة عبارات مع الترجمة)
  • أصل الكلمة

%ما هو (من)٪ 1 - تعريف

EXPLANATORY NOTE IN THE SOURCE CODE OF A COMPUTER PROGRAM
Comment (computing); Commenting code; */; /*; Rem'd out; Rem it out; Remmed out; Comment out; Comment (programming); Comment (computer language); Source code comment; Source code comments; FIXME; Fixme; Commenting out; REM (BASIC); Commented out; Code comments; Line comment; No-render sign; Comment line; Comments (JavaScript); Comment (JavaScript); Comment (javascript); Comment (Javascript); JavaScript comments; JavaScript comment; Javascript comments; Javascript comment; Comments in JavaScript; Code comment; Comments (programming); REM (DOS command); REM (command); Rem (command); Comparison of programming languages (comments); FIXME (tag); TODO (tag); XXX (tag); DEBUG (tag); BUG (tag); HACK (tag); NOTE (tag); UNDONE (tag); KLUDGE (tag); BODGE (tag)
  • Java]] source code with '''prologue''' comments indicated in <span style="color:#f00;">red</span> and '''inline''' comments in <span style="color:#0e850e;">green</span>. '''Program code''' is in <span style="color:#00f;"> blue</span>.

FIXME         
<programming> A standard tag often put in comments near a piece of code that needs work. The point of doing so is that a grep or a similar pattern-matching tool can find all such places quickly. This is common in GNU code. Compare XXX. [Jargon File] (2001-03-16)
comment out         
<programming> To surround a section of code with comment delimiters or to prefix every line in the section with a comment marker. This prevents it from being compiled or interpreted. It is often done to temporarily disable the code, e.g. during debugging or when the code is redundant or obsolete, but is being left in the source to make the intent of the active code clearer. The word "comment" is sometimes replaced with whatever syntax is used to mark comments in the language in question, e.g. "hash out" (shell script, Perl), "REM out" (BASIC), etc. Compare condition out. [Jargon File] (1998-04-28)
Comment (computer programming)         
In computer programming, a comment is a programmer-readable explanation or annotation in the source code of a computer program. They are added with the purpose of making the source code easier for humans to understand, and are generally ignored by compilers and interpreters.

ويكيبيديا

Comment (computer programming)

In computer programming, a comment is a programmer-readable explanation or annotation in the source code of a computer program. They are added with the purpose of making the source code easier for humans to understand, and are generally ignored by compilers and interpreters. The syntax of comments in various programming languages varies considerably.

Comments are sometimes also processed in various ways to generate documentation external to the source code itself by documentation generators, or used for integration with source code management systems and other kinds of external programming tools.

The flexibility provided by comments allows for a wide degree of variability, but formal conventions for their use are commonly part of programming style guides.