次のように構造体を作成します
struct DoubleListDataNode
{
INT nSequenceID;
DOUBLE fTemp;
DOUBLE fHumi;
INT nTimeHour;
INT nTimeMiin;
INT nTS1;
INT nTS2;
};
そして私はclistを作成します
typedef CList<DoubleListDataNode *, DoubleListDataNode *> listDoubleListDataNode;
そして私はパブリック変数を作成します
listDoubleListDataNode gDoubleListDataNode;
DoubleListDataNode *pDoubleListDataNode;
今のところ、リストにデータがあります
1 1.00 2.00 001H01M 1 2
2 1.00 2.00 002H01M 1 2
3 3.00 4.00 003H02M 3 4
4 3.00 4.00 004H02M 3 4
5 5.00 6.00 005H03M 5 6
6 5.00 6.00 006H03M 5 5
nSequenceID = 1 または 5 を見つけるために、CList の検索機能を使用するにはどうすればよいですか?
findindex(0) および findindex(5) を使用しない場合
gDoubleListDataNode(1, ...) を試してみましたが、うまくいきません
ありがとう