代码搜索:uint
找到约 10,000 项符合「uint」的源代码
代码结果 10,000
www.eeworm.com/read/270811/4234828
txt getaroundnum(uint row, uint col).txt
//in file : MineWnd.cpp
//获取某个小方块区域相邻8个区域的雷个数
UINT CMineWnd::GetAroundNum(UINT row, UINT col)
{
UINT i,j;
UINT around =0;
UINT minRow = (row == 0) ? 0 : row-1;//确定实际的相邻方块的行起点
UINT max
www.eeworm.com/read/270811/4234833
txt ismine(uint row, uint col).txt
//in file : MineWnd.cpp
//判断是否为雷
BOOL CMineWnd::IsMine(UINT row, UINT col)
{
return (m_pMines[row][col].uAttrib == ATTRIB_MINE);
}
www.eeworm.com/read/270811/4234838
txt expandmines(uint row, uint col).txt
//in file : MineWnd.cpp
//雷方块拓展(对于周围无雷的空白区域)
void CMineWnd::ExpandMines(UINT row, UINT col)
{
UINT i,j;
UINT minRow = (row == 0) ? 0 : row - 1;
UINT maxRow = row +2;
UINT minCol = (col ==
www.eeworm.com/read/140673/5784699
h uint.h
#ifndef UINT_H__
#define UINT_H__
#include
#include "Vector.h"
struct Digit { // 十进制数值位
typedef unsigned char Value; // 存放值的类型
enum { BASE = 10 };
/* 默认构造函数
*/
www.eeworm.com/read/140673/5784700
cpp uint.cpp
#include
#include
#include "UInt.h"
using namespace std;
/* 构造函数: 通过字符串ch构造整数
* 若字符串ch不代表无符号整数, 抛出std::invalid_argument
*/
UInt::UInt(const char *ch) {
www.eeworm.com/read/157384/11714532
h uint.h
/*
* Copyright (C) 2000 Ross Combs (rocombs@cs.nmsu.edu)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as publ
www.eeworm.com/read/231414/14236749
uint sample.uint
www.eeworm.com/read/246541/4493415
hpp uint.hpp
/*
* Open BEAGLE
* Copyright (C) 2001-2005 by Christian Gagne and Marc Parizeau
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser
www.eeworm.com/read/326616/3470708
java uint.java
package org.xvolks.jnative.misc.basicStructures;
/**
* $Id: UINT.java,v 1.5 2006/10/13 21:00:36 mdenty Exp $
*
* This software is released under the LGPL.
* @author Created by Marc DENTY -
www.eeworm.com/read/444170/1736004
h uint.h
/* ------------------------------------------------------------------------- *\
UINT.H :
Definition of an unsigned integer type (and related types)
by Christophe Schlick (1 June 1992)
\* --