在c ++中返回void *的类型

时间:2016-10-19 09:35:27

标签: c++ linux void void-pointers return-type

我可以为c ++函数声明返回类型void *吗?我在Linux环境中工作,我希望在void *的情况下为共享库返回dlopen库句柄。

1 个答案:

答案 0 :(得分:1)

  

我可以为c ++函数声明返回类型的void *吗?

是的,你可以。这是返回不透明指针的一种方法。 另一个是:

struct Foo;
Foo* bar();