0

我需要经常用 c++ 表示一个表。例如,在一个应用程序中,我需要维护一个表,如下所示。

int analog_channel;
int operator_channel;
state channel_state;
string phone_number;

但我需要制作analog_channeloperator_channel索引。对于这种数据,c++ 中最合适的表表示形式是什么,boost_multiindex或者其他什么?

4

2 回答 2

0

boost::multi_index将是一个不错的选择。

于 2012-06-27T10:07:23.273 回答
-2

你试过qT吗?我认为它具有一些 boost 的功能,但这就是我使用的,而且很可爱 :D

http://qt.nokia.com/products/

您可以查看该网站上的功能列表,了解每个课程的详细信息...

于 2012-06-26T03:42:52.153 回答