📜  Erlang-预处理器

📅  最后修改于: 2020-11-04 05:56:04             🧑  作者: Mango


在编译Erlang模块之前,它会由Erlang预处理程序自动处理。预处理器将扩展源文件中可能存在的所有宏,并插入任何必需的包含文件。

通常,您不需要查看预处理器的输出,但是在特殊情况下(例如,调试错误的宏时),您可能希望保存预处理器的输出。要查看预处理模块some_module.erl的结果,请使用OS Shell命令。

erlc -P some_module.erl

例如,假设我们有以下代码文件-

-module(helloworld). 
-export([start/0]). 
-include("user.hrl"). 

start() -> 
   io:fwrite("~w",[?macro1(1,2)]).

如果我们从命令行执行以下命令-

erlc –P helloworld.erl

将会生成一个名为helloworld.P的文件。如果打开此文件,则会发现以下内容,这些内容是预处理器将编译的内容。

-file("helloworld.erl", 1). -module(helloworld).

-export([start/0]).
-file("user.hrl", 1).
-file("helloworld.erl", 3).

start() ->
   io:fwrite("~w", [{1 + 2}]).