方法的定义 修饰符 返回类型 方法名(参数){ 方法体 } 参数说明: void :没有返回值; ...
分类:
编程语言 时间:
2017-08-27 16:10:41
阅读次数:
113
业务复杂的微服务架构中,往往服务之间的调用关系比较难梳理,一次http请求中,可能涉及到多个服务的调用(eg: service A -> service B -> service C...),如果想分析各服务间的调用关系,以及各服务的响应耗时,找出有性能瓶颈的服务,这时zipkin就派上用场,它是T ...
分类:
编程语言 时间:
2017-08-27 16:10:33
阅读次数:
240
using System; using System.Net; namespace ConsoleApplication { class Program { static void Main(string[] args) { IPHostEntry ipHost = Dns.GetHostEntry... ...
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
...
分类:
编程语言 时间:
2017-08-27 16:10:10
阅读次数:
149
using System; namespace ConsoleApplication { class Program { static void Print(int a, int b) { Console.Write(a + b); } static void Print(string a... ...
namespace ConsoleApplication2{ public static class Filter { public static IEnumerable<string> ForUser(this IEnumerable<string> qry, string userName) { ...
分类:
编程语言 时间:
2017-08-27 16:09:52
阅读次数:
148
1、path path是给操作系统用的 path是用来搜索所执行的可执行文件路径的,如果执行的可执行文件不在当前目录下,那就会依次搜索path中设置的路径;而java的各种操作命令是在其安装路径中的bin目录下,所以在path中设置了JDK的安装目录后就不用再把java文件的完整路径写出来了,它会自 ...
分类:
其他好文 时间:
2017-08-27 16:09:43
阅读次数:
184
IdCard.hbm.xml 1、一对一关系中存在两张表,id card表有外键,所以使用many-to-one 来对应 2、指定class,外键名称column="pserson_id",唯一性unique="true" Person.hbm.xml 1、一对一关系使用one-to-one 因为这 ...
分类:
Web程序 时间:
2017-08-27 16:09:34
阅读次数:
177
0 web.xml中注册的CharacterEncodingFilter 上面的配置相当于servlet中的 request.setCharacterEncoding("UTF-8")。 1 post请求 通过jquery.ajax的post请求,不进行request.setCharacterEnc ...
分类:
编程语言 时间:
2017-08-27 16:09:28
阅读次数:
215
using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { //int[] a=new int[3]; //一维数组 int[,] a = new int[3,3]... ...
分类:
编程语言 时间:
2017-08-27 16:09:18
阅读次数:
115
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
// 例如: 当输入a = {8,4,1,6,7,4,9,6,4}, // a = {1,7,9,8,4,6,4,6,4}为一种满足条件的排序结果 排序结果: ...
分类:
编程语言 时间:
2017-08-27 16:09:02
阅读次数:
771
目录: 设计模式六大原则(1):单一职责原则 设计模式六大原则(2):里氏替换原则 设计模式六大原则(3):依赖倒置原则 设计模式六大原则(4):接口隔离原则 设计模式六大原则(5):迪米特法则 设计模式六大原则(6):开闭原则 设计模式六大原则(1):单一职责原则 定义:不要存在多于一个导致类变更 ...
分类:
编程语言 时间:
2017-08-27 16:08:55
阅读次数:
224
通过学习java的一二章对java的程序设计和程序设计环境有了了解。而老师所提出的反转课堂教学法对我的课前预习和课后复习有了更高的要求。通过第一章的学习,Java是一种面向对象的语言,它的重点放在了数据和对象的接口上。并且java中没有指针运算,头文件,结构,联合,操作符重载,虚基类等。Java同时 ...
分类:
编程语言 时间:
2017-08-27 16:08:49
阅读次数:
187
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { Dictionary a = new Di... ...