Mode ObjFPC

From Lazarus wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

English (en) español (es) français (fr)

The mode ObjFPC, switched on with {$mode objfpc} in source code, or -Mobjfpc on the command line, is the default mode for Lazarus source files (the default compiler mode when not using Lazarus is FPC mode).

Using the ObjFPC mode has the following consequences:

  1. The address operator has to be used to assign procedural variables. Use {$modeswitch classicProcVars+} to disable this requirement.
  2. A forward declaration must be repeated exactly the same by the implementation of a function/procedure. In particular, parameters cannot be omitted when implementing the function or procedure, and the calling convention must be repeated as well.
  3. Overloading of functions is allowed.
  4. Nested comments are allowed.
  5. The Objpas unit is loaded right after the system unit. One of the consequences of this is that the type integer is redefined as longint.
  6. The cvar type may be used.
  7. PChars are converted to strings automatically.
  8. Parameters in class methods cannot have the same names as class properties.
  9. Strings are shortstrings by default. This may be changed by using the -Sh command line switch or the {$H+} switch.
  10. Exceptions, classes and Interfaces are enabled.
  11. Inline code is allowed: There is no need to enable it with the {$INLINE} directive.