problemscpp
A collection of my answers to algorithm problems in c++.
载入中...
搜索中...
未找到
comp526::set::card类 参考

#include <comp526.h>

Public 成员函数

 card (int id, string s)
 

Public 属性

char f [4]
 
int id
 

详细描述

在文件 comp526.h58 行定义.

构造及析构函数说明

◆ card()

comp526::set::card::card ( int id,
string s )

在文件 comp526.cpp140 行定义.

140 {
141 this->id = id;
142 istringstream iss(s);
143 iss >> this->f[0] >> this->f[1] >> this->f[2] >> this->f[3];
144 }

引用了 f.

类成员变量说明

◆ f

char comp526::set::card::f[4]

在文件 comp526.h61 行定义.

被这些函数引用 card() , 以及 comp526::set::calc_mask().

◆ id

int comp526::set::card::id

在文件 comp526.h60 行定义.

被这些函数引用 comp526::set::cardset::insert().


该类的文档由以下文件生成: