使用函数的 CERN 根 5.34 错误消息

Cern ROOT 5.34 error message using functions

本文关键字:错误 消息 CERN 函数      更新时间:2023-10-16

我正在使用 CERN ROOT 版本 5.34,我在使用函数时遇到问题。始终出现相同的消息错误。

例如(使用非常简单的函数):

 *******************************************
  *                                         *
  *        W E L C O M E  to  R O O T       *
  *                                         *
  *   Version   5.34/36      5 April 2016   *
  *                                         *
  *  You are welcome to visit our Web site  *
  *          http://root.cern.ch            *
  *                                         *
  *******************************************
ROOT 5.34/36 (v5-34-36@v5-34-36, Apr 05 2016, 10:25:45 on win32)
CINT/ROOT C/C++ Interpreter version 5.18.00, July 2, 2010
Type ? for help. Commands must be C++ statements.
Enclose multiple statements between { }.
root [0] #include <iostream>
Note: File "iostream" already loaded
root [1] using namespace std;
root [2] void hello(){cout << "Hi!" << endl;}
Limitation: Function can not be defined in a command line or a tempfile
You need to write it in a source file (tmpfile)(1)
*** Interpreter error recovered ***
root [3]

我该如何解决这个问题?

如果您使用的是支持所有 C++11 功能的根 6,则可以定义一个 lambda 函数,如下所示

auto hello = [](){ cout << "Hi!" << endl; };

然后,您可以像调用常规函数一样调用它

hello();