在函数参数中指定名称空间C++
如何指定通过在C ++(Arduino)中传递函数参数中使用的命名空间。
目的是根据程序正在运行的模式选择名称空间。当然,模式可能在运行时发生变化。
namespace A{
void init(){}
void run(){}
}
namespace B{
void init(){}
void run(){}
}
void function2(namespace X) { // this does not work.
X::init();
X::run();
}
void loop(){
// mode is defined elsewhere (actually a switch function is used)
if (mode == "A") {
function2(A);
} else if (mode == "B") {
function2(B);
}
}
How to specify which namespace used by passing in function argument in C++ (arduino)
The objective is to select a namespace depending on the mode the program is running. Of course, the mode may change at runtime.
namespace A{
void init(){}
void run(){}
}
namespace B{
void init(){}
void run(){}
}
void function2(namespace X) { // this does not work.
X::init();
X::run();
}
void loop(){
// mode is defined elsewhere (actually a switch function is used)
if (mode == "A") {
function2(A);
} else if (mode == "B") {
function2(B);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您不能将命名空间传递给函数(或方法)。
但您可以传递指向函数或方法的指针,如下所示:
注意:
__PRETTY_FUNCTION__
是一个 GCC 扩展,可扩展为当前函数或方法的漂亮字符串名称。You cannot pass a namespace to a function (or method).
But you can pass a pointer to a function or method, like this:
Note:
__PRETTY_FUNCTION__
is a GCC extension that expands to the pretty string name of the current function or method.您可以在 C 中使用宏,如下
完整源代码:
在以下位置进行测试: https://godbolt.org/z/raq8Ks9cM< /a>
you can use macro in C like this
full source:
tested at : https://godbolt.org/z/raq8Ks9cM
像您在示例中一样,具有指定名称空间的函数参数是无效的。来自::
但是,存储持续时间的概念仅适用于对象。而且,由于名称空间不是对象(它们都不是对象),因此它们没有存储持续时间,因此您在程序中的语法不正确。也就是说,我们不能将命名空间作为函数参数传递。
相反,您可以将参数作为指向函数的指针,如下所示。
此外,请注意,
void main()
不是标准的C ++。相反,您应该使用int main()
,如下所示。demo
It is not valid to have a function parameter specifying a namespace as you have in your example. From Storage class specifiers 7.1.1.2:
But the concept of storage duration is applicable only to objects. And since namespaces are not objects(and neither are they types), they don't have storage duration and thus the syntax that you've in your program is incorrect. That is, we cannot pass a namespace as a function argument.
You can instead have a parameter as a pointer to a function as shown below.
Additionally, note that
void main()
is not standard C++. You should instead useint main()
as shown below.Demo