这次写的是小游戏扫雷,由于时间问题,扫雷的成功失败判断还没有写的很好,只是把大体的思路写出来了。 这次最主要的是有两个类 第一个是地雷类 :lanmine 1 using System; 2 using System.Collections.Generic; 3 using System.Drawi ...
如果想将文字设置为背景图片的颜色,需要如下步骤: 第一步:设置背景图片 background-image: url("3.jpg"); 第二步:设置属性 background-clip: text; 第三步:将文字颜色改为透明 color: transparent; <!DOCTYPE html> ...
分类:
其他好文 时间:
2020-11-11 15:52:25
阅读次数:
5
泛型: Generics 安全校验机制 可以在类或者方法中预支的使用未知的类型,在JDK1.5之后引入的新特性 让你在设计API时可以指定类或者方法支持泛型,这样我们使用API时,变得更为简洁,安全 并且得到了在程序编译时期的语法安全检查. 将运行时期ClassException,转移到编译时期变成 ...
分类:
编程语言 时间:
2020-11-07 15:48:31
阅读次数:
17
方法一: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Web.Services.Description; usi ...
分类:
Web程序 时间:
2020-11-04 17:48:18
阅读次数:
35
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System. ...
帮助类: using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using MySq ...
分类:
数据库 时间:
2020-11-01 21:58:38
阅读次数:
29
添加引用: ThoughtWorks.QRCode.dll System.Drawing using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Mi ...
以下操作在maven正确安装前提下进行 1、在eclipse中配置maven Perferences——>Maven——>User Settings,进行如下配置 2、创建Maven web项目 a、找到maven project b、勾选simple-project 3、填写项目相关信息 需要注意 ...
分类:
Web程序 时间:
2020-10-26 11:25:31
阅读次数:
42
原文:https://blog.csdn.net/liuweitoo/article/details/8281213 _Castle.Windsor.3.1.0 一. 使用代码方式进行组件注册【依赖服务类】 using System;using System.Collections.Generic;... ...