作为 C++11 属性参数的变量
Variable as C++11 attribute argument
给定一个接受字符串参数的属性,例如 [[deprecated("reason")]]
,是否可以使用除硬编码字符串文字以外的任何其他内容?
在我的例子中,我正在为公开 [[eosio::on_notify("account::action")]]
属性的 EOS.IO 区块链开发一个智能合约,我想在配置文件中提取 "account::action"
部分.
我知道有一个 EOS.IO 特定的 Stack Exchange 网络,但我认为这个问题适用于所有 C++11 属性。
目前尝试次数
我尝试在 config.hpp
header:
的命名空间中将这些参数定义为静态常量字符串
// ...omitting irrelevant parts
namespace config {
static const std::string test = "eosio.token::transfer";
}
之后导入 header 并使用静态字符串:
// contract.cpp
// ...omitting irrelevant parts
#include "config.hpp"
class [[eosio::contract]] myapp : public contract {
public:
[[eosio::on_notify(config::test)]]
void on_transfer();
};
然而,编译器抱怨:
error: 'on_notify' attribute requires a string [[eosio::on_notify(config::test)]]
没有
属性按字面意思嵌入到您的源代码中。
不过,您可以使用预处理器,在构建系统的帮助下定义所需的宏。
给定一个接受字符串参数的属性,例如 [[deprecated("reason")]]
,是否可以使用除硬编码字符串文字以外的任何其他内容?
在我的例子中,我正在为公开 [[eosio::on_notify("account::action")]]
属性的 EOS.IO 区块链开发一个智能合约,我想在配置文件中提取 "account::action"
部分.
我知道有一个 EOS.IO 特定的 Stack Exchange 网络,但我认为这个问题适用于所有 C++11 属性。
目前尝试次数
我尝试在 config.hpp
header:
// ...omitting irrelevant parts
namespace config {
static const std::string test = "eosio.token::transfer";
}
之后导入 header 并使用静态字符串:
// contract.cpp
// ...omitting irrelevant parts
#include "config.hpp"
class [[eosio::contract]] myapp : public contract {
public:
[[eosio::on_notify(config::test)]]
void on_transfer();
};
然而,编译器抱怨:
error: 'on_notify' attribute requires a string [[eosio::on_notify(config::test)]]
没有
属性按字面意思嵌入到您的源代码中。
不过,您可以使用预处理器,在构建系统的帮助下定义所需的宏。