02 2017 档案

摘要:用 Notepad++ 打开,把每一个将要放在表中单元格的内容放一行(注: ^ 代表行首 $ 代表行尾) 去除行尾空格和空白行:按CTRL+H 选择正则表达式-- 查找目标:\s+$ 替换为空 去除行首空格:按CTRL+H 选择正则表达式-- 查找目标:^\s+ 替换为空 用 Notepad++ 打 阅读全文
posted @ 2017-02-27 10:28 甜菜波波 阅读(5123) 评论(0) 推荐(0) 编辑
摘要:1.新建demo4 web项目, 导入spring包(使用的是spring4.2) 2.修改WEB-INF下的WEB.XML内容为 <?xml version="1.0" encoding="UTF-8"?> <web-app version="2.4" xmlns="http://java.sun 阅读全文
posted @ 2017-02-26 14:04 甜菜波波 阅读(206) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace demo12 { class Program { static void Main(string[] args) { Animal ... 阅读全文
posted @ 2017-02-20 11:04 甜菜波波 阅读(212) 评论(0) 推荐(0) 编辑
摘要:explicit 和 implicit 属于转换运算符,如用这两者可以让我们自定义的类型支持相互交换explicti 表示显式转换,如从 A -> B 必须进行强制类型转换(B = (B)A)implicit 表示隐式转换,如从 B -> A 只需直接赋值(A = B)隐式转换可以让我们的代码看上去 阅读全文
posted @ 2017-02-20 10:09 甜菜波波 阅读(985) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace demo9 { class Program { static void Main(string[] args 阅读全文
posted @ 2017-02-16 17:42 甜菜波波 阅读(154) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace demo5 { class Program { public delegate T del(T t); public static string say(s... 阅读全文
posted @ 2017-02-15 15:06 甜菜波波 阅读(126) 评论(0) 推荐(0) 编辑
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace demo3 { class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2017-02-14 11:48 甜菜波波 阅读(259) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示