当前位置:首页 » 服务器技术
开发技术指南» 文章正文
    引言: using System;using System.Drawi
 

 

 ·学习笔记(3)--using ras sdk    »显示摘要«
    摘要:using ras sdk notes: 如果需要在运行时创建和修改报表,必须要使用ras提供的服务来实现。 1. installing sdk jar files ras sdk和ras server可以安装在同一台机器上,也可以安装在不同的机器上。默认安装下,sdk jar文件安装在c:\program files\common files\crystal decisions\2.0\jars\(9.0)或c:\program files\common......
 ·eclipse 3.0 正式版发布    »显示摘要«
    摘要:we are pleased to announce that eclipse 3.0 is now available for download from http://eclipse.org/downloads/index.php.this drop is in the process of being propagated to the various eclipse mirror sites, which usually takes a day o......


走迷宫C#版(一)

//迷宫类相关

【相关文章:《Effective Java》读书笔记

using system; 【扩展阅读:语音识别系统,你试过了吗?

【扩展信息:哲学家就餐问题的C#实现

using system.drawing;

using system.drawing.drawing2d;

using system.collections;

namespace mazedemo

{

 /// <summary>

 /// 迷宫类

 /// </summary>

 public class cmaze

 {

  bool[,] mg;  //地图格子

  stack stack; //堆栈

  point in_p;  //入口点

  point out_p; //出口点

  point start_p; //绘制迷时候的起始点

  size boxsize; //每个格子的大小

  int step_count; //共走多少步

  public cmaze()

  {

   stack=new stack();

   this.start_p=new point(0,0);

   this.boxsize=new size(50,50);

   step_count=0;

  }

  public cmaze(bool[,] _mg):this()

  {

   this.mg=_mg;

  }

  public cmaze(bool[,] _mg,point _in,point _out):this()

  {

   this.mg=_mg;

   this.in_p=_in;

   this.out_p=_out;

   stack way=this.test(this.in_p,_in);

   stack.push(new ccoor(this.in_p,way));

   this.step_count++;

  }

  /// <summary>

  /// 绘制迷宫时窗口的起始坐标

  /// </summary>

  public point startpoint

  {

   set{this.start_p=value;}

   get{return this.start_p;}

  }

  /// <summary>

  /// 当前迷宫共走多少步


...   下一页
 ·dns与bind学习笔记 1    »显示摘要«
    摘要:一直想系统的学习和了解dns的原理,包括看相关的rfc文件,一看和dns相关的rfc文件,妈呀,居然有86个之多。能看多少是多少吧。先把dns的原理研究透彻了。在看rfc文件我想会事半功倍的:) 1. icann是干什么的?和他的一些相关资讯? icann全称是叫:internet corporation for assigned names and numbers(互联网名称与数字地址分配机构),是一个非盈利性的国际组织,负责互联网协议(ip)地址的空间......
» 本期热门文章:

©2000-2007 All Rights Reserved. 最佳浏览:1024X768 MSIE