using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
Windows开发 时间:
2017-08-27 15:52:55
收藏:
0 评论:
0 赞:
0 阅读:
334
业务复杂的微服务架构中,往往服务之间的调用关系比较难梳理,一次http请求中,可能涉及到多个服务的调用(eg: service A -> service B -> service C...),如果想分析各服务间的调用关系,以及各服务的响应耗时,找出有性能瓶颈的服务,这时zipkin就派上用场,它是T ...
分类:
编程语言 时间:
2017-08-27 15:52:47
收藏:
0 评论:
0 赞:
0 阅读:
988
VS2015 推荐插件///////////////////////////////////////////////////////////////////////////////////////////代码辅助及显示增强SuperCharger是原来的CodeMap在VS2013/VS2015上的 ...
分类:
其他 时间:
2017-08-27 15:52:37
收藏:
0 评论:
0 赞:
0 阅读:
282
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
Windows开发 时间:
2017-08-27 15:52:28
收藏:
0 评论:
0 赞:
0 阅读:
282
// 例如: 当输入a = {8,4,1,6,7,4,9,6,4}, // a = {1,7,9,8,4,6,4,6,4}为一种满足条件的排序结果 排序结果: ...
分类:
编程语言 时间:
2017-08-27 15:52:13
收藏:
0 评论:
0 赞:
0 阅读:
314
创建元素节点 1 document.createElement( 标签名 ) 创建?本节点 1 document.createTextNode( ?本内容 ) 创建属性节点 document.createAttribute( 属性名称 ) 动态和静态 NodeList NodeList 是指?组元素 ...
分类:
其他 时间:
2017-08-27 15:52:04
收藏:
0 评论:
0 赞:
0 阅读:
291
1原型链继承 1 原型链继承 要点:原型对象等于另一个类型的实例 缺点:子类型不同的实例之间会共享 ,造成污染 2借用构造函数继承 2 借用构造函数 要点:在子类型构造函数内部调用超类型构造函数 可用call和apply 缺点:函数不能复用 3组合继承 3 组合继承 要点:使用原型链实现对原型属性和 ...
分类:
编程语言 时间:
2017-08-27 15:51:29
收藏:
0 评论:
0 赞:
0 阅读:
278
DOM 的级别包含了从第 0 级到第 3 级。 注:第 0 级和第 3 级并不是 W3C 的标准。 DOM 0 级: 定义了 Document 对象的?些属性和?法。 DOM 1 级:是 W3C 在 1998 年 10 ?提出的第?个正式的 W3C DOM 标准。 DOM Core(核?):提供了 ...
分类:
其他 时间:
2017-08-27 15:51:15
收藏:
0 评论:
0 赞:
0 阅读:
110
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:
Windows开发 时间:
2017-08-27 15:51:04
收藏:
0 评论:
0 赞:
0 阅读:
288
Android 客户端: AndroidManifest.xml添加: 界面如下: c++服务端: ...
分类:
移动平台 时间:
2017-08-27 15:50:51
收藏:
0 评论:
0 赞:
0 阅读:
504
1.通过标签的 id 属性值获取 1 document.getElementById( id属性值 ) 2.通过标签的 class 属性值获取 document.getElementsByClassName( class属性值 ) 3通过标签名获取 1 document.getElementsByT ...
分类:
其他 时间:
2017-08-27 15:50:22
收藏:
0 评论:
0 赞:
0 阅读:
224
using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { string a = "1234"; int b = Convert.ToInt32(a)+1; ... ...
分类:
Windows开发 时间:
2017-08-27 15:50:10
收藏:
0 评论:
0 赞:
0 阅读:
209
using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { Console.Write(DateTime.Now); Console.ReadKey... ...
分类:
Windows开发 时间:
2017-08-27 15:49:57
收藏:
0 评论:
0 赞:
0 阅读:
249
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 15:49:38
收藏:
0 评论:
0 赞:
0 阅读:
288
从ubuntu16换到ubuntu14后安装libusb运行一直在libusb_bulk_transfer语句出现运行出现段错误,分别换了libusb1.0.0,1.0.9及1.0.21. 通过查阅链接:http://blog.csdn.net/zhengxianghdu/article/detai ...
分类:
系统服务 时间:
2017-08-27 15:49:24
收藏:
0 评论:
0 赞:
0 阅读:
1111
SAMBA服务器可以实现Windows主机和Linux主机共享资源互访的功能,即在Windows下可以通过网上邻居访问Linux操作系统中SAMBA服务器共享的文件夹,当然,Linux操作系统之间同样可以使用SAMBA互相访问共享资源。 linux共享文件到Window 00、安装samba yum ...
分类:
其他 时间:
2017-08-27 15:49:00
收藏:
0 评论:
0 赞:
0 阅读:
335
首先用vs2010建立win32项目,选择dll和空项目。 头文件add.h 源文件add.cpp 编译生成add.dll。 C#调用: 调试报错,执行没有错。 ...
分类:
编程语言 时间:
2017-08-27 15:48:45
收藏:
0 评论:
0 赞:
0 阅读:
269
using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { Console.Write("Hello World!"); Console.Read(); ... ...
分类:
Windows开发 时间:
2017-08-27 15:48:32
收藏:
0 评论:
0 赞:
0 阅读:
239
题目: 判定一个数m是否是素数。 定义: 素数,就是质数,我们简单看一看百度给的定义就行,质数定义为在大于1的自然数中,除了1和它本身以外不再有其他因数,这样的数称为质数。 思想: 2 ~ m-1 之间有无整数整除m即可。 简化: 2 ~ 根号m 之间有无整数整除m即可。 【代码】 ...
分类:
编程语言 时间:
2017-08-27 15:48:18
收藏:
0 评论:
0 赞:
0 阅读:
307
0 从web.xml出发 项目中用Spring整合Hibernate,Spring贯穿整个项目,所以先看看Spring在哪一步整合了Hibernate。先看部分web.xml。 在context-param设定参数contextConfigLocation。 在listener配置基于Web上下文级 ...
分类:
编程语言 时间:
2017-08-27 15:48:02
收藏:
0 评论:
0 赞:
0 阅读:
386