标题:求高手 帮忙给个棋盘的代码
只看楼主
allenz0810
Rank: 2
等 级:论坛游民
帖 子:44
专家分:38
注 册:2012-9-3
结帖率:100%
 问题点数:0 回复次数:0 
求高手 帮忙给个棋盘的代码
求高手 忙吧给个棋盘的 代码 那个 只需要 棋盘 不需要其他的 信号
下面是哥头文件 希望高手帮忙写完其他的
#ifndef BOARD_H
#define Board_H

template <<class ItemType, int SIZE>
class Board
{
 friend std::ostream & operator<< <> (std::ostream &, const Board<ItemType, SIZE> &);
 private:
 ItemType Aboard[SIZE][SIZE];
public:
 int FormatSize;
 Board (ItemType);
 void Enter (Cell, ItemType);
 void Enter (int, int, ItemType);
 ItemType ValueIn(Cell);
 ItemType ValueIn(int, int);
  void PrintBoard(std::ostream &);
 void Reset(ItemType);
};
#endif
搜索更多相关主题的帖子: friend public private void 
2012-09-27 09:23



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-382180-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.073877 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved