English 中文(简体)
1. 现代安全套 C++
原标题:Typesafe callback system in modern C++

I m在一个模块上工作,该模块使用一个 was子系统,安装非常 n。 客户登记在一份身份证上,并将以一个变量(或两个或两个)重新编号。 问题在于,几乎每个发展指数都不同。 (Ex: Id1 ->char*, Id2 ->int。 实现这一点的途径是通过点子变异。 So格

typedef void (*NotifFunctionPtr)(void* ctx, const void* option);

这种做法存在许多问题,我想用一种安全和现代的方式来取代。 然而,这简而言之,我有一些想法(<条码>,如:<>功能/代码>。 或取代<代码> 删除* 有了一种能够归纳出类型和缩略的固定结构,但我想也许会有一个更好的想法,因此,我很想知道,what是C++中一种类型的安全呼吁的现代环境方式。

Edit:另一种想法是,通过模范功能,用同样的T类进行回击。 这是否可行或是在图书馆的一个塔里实施?

最佳回答

你们的问题不是呼吁,而是你们想要把所有呼吁都当作同一类型来处理,如果它们不是(签名不同)。 因此,你要么做新版的Cvoid*。 如果你想使用型安全<>/em>办法,你必须为此支付费用,并提供不同方法登记不同类型的反馈——这是适当的方法。

一旦你解决了这一问题,你可以使用<代码>signals或signals2的图书馆,或以功能<<>/code”作为基数(避免重写类型词)。

问题回答

<代码>boost:功能只是此处的正确选择。 你们获得功能物体的类型安全,而不必作许多改动。

如果你们已经看到了动力。 为什么不使用signals signals2 图书馆。





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?