上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 112 下一页
摘要: SQL Prompt是一款拥有SQL智能提示功能的SQL Server和VS插件。超级好用的插件, SQL Prompt是一款拥有SQL智能提示功能的SQL Server和VS插件。超级好用的插件, 阅读全文
posted @ 2017-06-19 15:02 甜菜波波 阅读(142) 评论(0) 推荐(0) 编辑
摘要: package com.test; public class Programe { public static void main(String[] args) throws InterruptedException { // TODO Auto-generated method stub System.out.println("aa... 阅读全文
posted @ 2017-06-11 16:17 甜菜波波 阅读(127) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC 3支持一项名为“Razor”的新视图引擎选项(除了继续支持/加强现有的.aspx视图引擎外)。当编写一个视图模板时,Razor将所需的字符和击键数减少到最小,并保证一个快速、通畅的编码工作流。 与大部分模板的语法不同,在Razor的帮助下,您不需要中断代码编写,仅仅为了在HT 阅读全文
posted @ 2017-06-09 18:07 甜菜波波 阅读(220) 评论(0) 推荐(0) 编辑
摘要: package com; public class Demo { public static void main(String[] args) { // TODO Auto-generated method stub //方法1 Thread t = new Thread() { public ... 阅读全文
posted @ 2017-06-09 13:42 甜菜波波 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 匿名内部类也就是没有名字的内部类 正因为没有名字,所以匿名内部类只能使用一次,它通常用来简化代码编写 但使用匿名内部类还有个前提条件:必须继承一个父类或实现一个接口 实例1:不使用匿名内部类来实现抽象方法 运行结果: eat something 可以看到,我们用Child继承了Person类,然后实 阅读全文
posted @ 2017-06-09 13:38 甜菜波波 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 我有一个枚举类型: #region -酒的种类- public enum WineType { 白酒 = 3, 葡萄酒 = 4, 洋酒 = 5, 老年陈酒 = 16, 啤酒 = 17 } #endregion 1 2 3 4 5 6 8 9 这是一个从数据库得到的值:葡萄酒 string wine= 阅读全文
posted @ 2017-06-08 16:30 甜菜波波 阅读(6339) 评论(0) 推荐(0) 编辑
摘要: 在编程语言中都有某种方式,告知编译器一块数据是恒定不变的。有两个需求 1. 一个永不改变的编译器常量 2. 一个在运行时被初始化的值,而这个值不会被改变 在Java中,使用final修饰变量实现这两个需求 private final int valueOne = 9; private static 阅读全文
posted @ 2017-06-06 16:27 甜菜波波 阅读(163) 评论(0) 推荐(0) 编辑
摘要: winmerge 阅读全文
posted @ 2017-06-01 14:42 甜菜波波 阅读(113) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Threading;namespace 线程同步{ 阅读全文
posted @ 2017-05-25 15:40 甜菜波波 阅读(4596) 评论(0) 推荐(1) 编辑
摘要: using System; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace UnitTestProject1 { [TestClass] public class UnitTest1 { [TestMethod] public void TestMethod1()... 阅读全文
posted @ 2017-05-25 10:01 甜菜波波 阅读(500) 评论(0) 推荐(0) 编辑
上一页 1 ··· 81 82 83 84 85 86 87 88 89 ··· 112 下一页