E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Introduce
我的第一个GitHub仓库
GitHub 常用命令 add--Add file contents to the index bisect--Find by binary search the change that
introduce
d
·
2015-11-08 17:01
github
删除子窗体中的控件中的某些属性时出现"Selection contains a component
introduce
d in an ancestor form which cannot be deleted
今天在修改程序的时候突然发现删除继承的窗体中的控件属性时出现错误:Selection contains a component
introduce
d in an ancestor form which
·
2015-11-08 17:57
component
Skia graphics library in Chrome
With the release of the WebKit-based Chrome browser, Google also
introduce
d a handful of new backends
·
2015-11-08 16:44
graphics
java软件包的访问权限和继承
public时,类名必须和文件名相同 public class Person{ public String name; //public权限 public void
introduce
·
2015-11-08 16:39
java
函数的复写
例子如下: class Person{ String name; void
introduce
(){ System.out.println
·
2015-11-08 16:37
函数
AMAZING AUCTION (第三届省赛)
从数据中找到与众不同的数据, 且该价钱是最低的(也就是竞标) 代码应该不难); 题目描述 Recently the auction house has
introduce
d
·
2015-11-08 16:20
IO
使用WMSYS.WM_CONCAT函数实现行列转换
This user was
introduce
d in Oracle9i and (like most Oracle9i supporting accounts) is locked b
·
2015-11-08 13:39
wm_concat
重构手法41:
Introduce
Assertion (引入断言)
某一段代码需要对程序状态做出某种假设。以断言明确表现这种假设。 动机:常常会有这样一段代码:只有当某个条件为真时,该段代码才能正常运行。 这样的假设通常并没有在代码中明确表现出来,你必须阅读整个算法才能看出。有时程序员会以注释写出这样的假设。可以使用断言明确标明这些假设。  
·
2015-11-08 13:37
assert
重构手法40:
Introduce
Null Object (引入Null 对象)
你需要再三检查某对象是否为null。将null值替换为null对象。 动机:多态的最根本好处在于:你不必再向对象询问“你是什么类型”而后根据得到的答案调用对象的某个行为-你只管调用该行为就是了,其他的一切多态机制会为你安排妥当。当某个字段内容是null时,多态可扮演另一个较不直观的用途。 做法:1、为源类建立一个子类,使其行为就像是源类的null版本。在源类和null子类中都加上IsNul
·
2015-11-08 13:36
object
重构手法17:
Introduce
Local Extension (引入本地扩展)
如果只需要一两个函数,你可以使用
Introduce
Foreign Method (引入外加函数)。但如果
·
2015-11-08 13:21
local
重构手法16:
Introduce
Foreign Method (引入外加函数)
你需要为提供服务的类增加一个函数,但你无法修改这个类。在客户类中建立一个函数,并以第一参数形式传入一个服务类实例。 动机:这种事情发生了太多次了,你正在使用一个类,它真的很好,为你提供了需要的所有服务。而后,你又需要一项新服务,这个类却无法供应。于是你开始咒骂“为什么不能做这件事?”如果可以修改源码,
·
2015-11-08 13:20
method
重构手法05:
Introduce
Explaining Variable (引入解释性变量)
你有一个复杂的表达式。将该复杂表达式(或其中一部分)的结果放进一个临时变量,以此变量名称来解释表达式用途。 if (Platform.ToUpperCass().indexOf("MAC") > -1 && (Browser.ToUpperCass().indexOf("Ie") > -1)
·
2015-11-08 13:19
variable
重构手法50:
Introduce
Parameter Object (引入参数对象)
某些参数总是很自然地同时出现。以一个对象取代这些参数。 动机:你常常会看到特定的一组参数总是被一起传递。可能有好几个函数都使用这一组参数,这些函数可能隶属同一个类,也可能隶属不同的类。这样一组参数就是所谓的Data Clumps(数据泥团),我们可以运用一个对象包装所有这些数据,再以该对象取代它们。哪怕只是为了把这些数据组织在一起,这样做也是值得的。本项重构的价值在于缩短参数列,过长的参数列总是
·
2015-11-08 13:07
parameter
Linux操作系统以及各大发行版介绍——Linux operating system and major distribution is
introduce
d
什么是Linux? 也许很多人会不屑的说,Linux不就是个操作系统么。错!Linux不是一个操作系统,严格来讲, Linux只是一个操作系统中的内核。内核是什么?内核建立了计算机软件与硬件之间通讯的平台,内核提供系统服务,比如文件管理、虚拟内存、设备I/O等。 既然Linux只是一个内核。那么我们通常所说的Linux操作系统又是什么?我们通常所说的Linux,指 GNU/Linux ,即
·
2015-11-08 12:54
System
dotLucene 系列文章
Introduce
dotLucene 系列一 --- 一个小例子 Index dotLucene 系列二 --- index 上 dotLucene 系列三 --- index
·
2015-11-08 11:29
Lucene
【笔记】Eclipse and Java for Total Beginners—016
Lesson 16 – Create main Method and JAR File
Introduce
main method Write a main method Run MyLibrary
·
2015-11-08 11:41
eclipse
【笔记】Eclipse and Java for Total Beginners—014
Lesson 14 – Finish checkOut Method Write getBooksForPerson method
Introduce
for each loop
Introduce
·
2015-11-08 11:40
eclipse
【笔记】Eclipse and Java for Total Beginners—012
Create checkOut, checkIn Methods Create test for checkOut, checkIn methods Write checkout method
Introduce
·
2015-11-08 11:38
eclipse
【笔记】Eclipse and Java for Total Beginners—010
Test JUnit test Create testMyLibrary to test MyLibrary constructor Create MyLibrary constructor
Introduce
·
2015-11-08 11:37
eclipse
【笔记】Eclipse and Java for Total Beginners—009
MyLibrary object to hold Person & Entry objects
Introduce
ArrayList in scrapbook
Introduce
Java
·
2015-11-08 11:36
eclipse
【笔记】Eclipse and Java for Total Beginners—003
Lesson 03 – Use Eclipse Scrapbook
Introduce
Eclipse Scrapbook
Introduce
Java expressions, statements
·
2015-11-08 11:32
eclipse
【笔记】Eclipse and Java for Total Beginners—002
Lesson 02 – Add Methods To Class
Introduce
Eclipse Views and Perspectives
Introduce
Eclipse user
·
2015-11-08 11:31
eclipse
自我介绍 简历
Now i will
introduce
myself briefly I am 26 years old,born in taizhou .
·
2015-11-08 09:29
介绍
学习:Sharepoint2010 Client Object Model 概述
- Complete details about Client Object Model This is the introduction to the Client Object model
introduce
d
·
2015-11-08 09:57
SharePoint
(Qt 翻译) QGLAbstractScene
QGLAbstractScene Class Reference #include <QGLAbstractScene> This class was
introduce
d in Qt3D
·
2015-11-07 12:50
abstract
英文自我介绍
Now i will
introduce
myself briefly I am 2
·
2015-11-07 12:00
介绍
android 第一次运行应用的引导界面
先看看效果图: 主要代码: package com.example.
introduce
demo; import java.util.ArrayList; import android.app.Activity
·
2015-11-07 12:50
android
重构 改善既有代码的设计:重构手法
Method (提炼函数) 2、Inline Method (内联函数) 3、Inline Temp (内联临时变量) 4、Replace Temp with Query (以查询取代临时变量) 5、
Introduce
·
2015-11-07 12:36
代码
Memory leak problem in .NET
leaks in .NET applications By Fabrice Marguerie Despite what a lot of people believe, it's easy to
introduce
·
2015-11-07 12:19
memory leak
Beginning
Introduce
To WCF
为了使读者对基于WCF的编程模型有一个直观的映像,我将带领读者一步一步地创建一个完整的WCF应用。本应用功能虽然简单,但它涵盖了一个完整WCF应用的基本结构。对那些对WCF不是很了解的读者来说,这个例子将带领你正式进入WCF的世界。 在这个例子中,我们将实现一个简单的计算服务(CalculatorService),提供基本的加、减、乘、除的运算。和传统的分布式通信框架一样,WCF本质上提供一个跨
·
2015-11-07 12:13
WCF
使用UML做需求分析的步骤
Use UML to do fast design (1 -
Introduce
work
·
2015-11-07 11:05
需求分析
Use UML to do fast design (1 -
Introduce
work steps)
不好意思,因为文章原本是给公司同事准备的培训材料(只有些大的提纲),所以都用的英文。等我把一些文档慢慢整理完贴上来以后,我会把一部分的内容翻译成中文的,并且再加入一些说明。 1 UML This is JoyYuan97's training session material. I will add more descripti
·
2015-11-07 11:00
design
Selenium Study Notes
Introduce
Selenium, and the benefit of Selenium? a.
·
2015-11-07 11:07
selenium
NerdDinner教程-----
Introduce
&part1
注:最近学习MVC,在看scottgu的nerddinner教程(原文地址:http://nerddinnerbook.s3.amazonaws.com/Intro.htm),不过全E文的,现学现翻译,有用的可以了解下,本人会陆续将所有的part翻译完毕。因本人E文水平有限,难免有误,望不吝赐教。 NerdDinner教程 学习一个框架最好的方法是用它去建立一个东西。这个教程一步一步的讲解如何
·
2015-11-07 11:45
inner
学习:New in SharePoint 2010 CAML Query
,
&< NOT INCLUDES>
Even though Microsoft encourages using LINQ in SharePoint 2010, they
introduce
d some new CAML
·
2015-11-07 10:11
SharePoint
A Rigorous & Readable Review on RNNs
A Rigorous & Readable Review on RNNs This post
introduce
s a new Critical Review on Recurrent
·
2015-11-07 10:23
view
使用 Inno Setup 快速打包你的应用程序
First
introduce
d in 1997, Inno Setup today riv
·
2015-11-07 10:38
Inno Setup
Some recent thinking
I think it is a good point to note down the daily life, in case someday I will be asked to
introduce
·
2015-11-07 09:11
in
MDAC(
Introduce
to Microsoft Data Access Components)
Microsoft Data Access Components (commonly abbreviated MDAC; also known as Windows DAC) is a framework of interrelated Microsoft technologies that allows programmers a uniform and comprehensive way
·
2015-11-07 09:01
Microsoft
推荐:用Python进行图像处理
关键词:图像处理 图像增强 Python Abstract:This context
introduce
s
·
2015-11-05 08:06
python
【Linux学习】epoll详解
当然,这不是2.6内核才有的,它是在2.5.44内核中被引进的(epoll(4)isanewAPI
introduce
dinLinuxkernel2.5.44),它几乎具备了之前所说的一切优点,被公认为Linux2.6
midion9
·
2015-11-04 12:00
hdu 1087 Super Jumping! Jumping! Jumping!
Maybe you are a good boy, and know little about this game, so I
introduce
it to you now.
·
2015-11-03 22:00
super
Regularized Linear Regression with scikit-learn
In this posting we will build upon this foundation and
introduce
an important extension to linea
·
2015-11-03 22:20
with
Using SqlDataReader’s new async methods in .Net 4.5 Beta
With the Developer Preview release of .Net 4.5, ADO.NET
introduce
d two asynchronous methods to the SqlDataReader
·
2015-11-03 21:40
method
HDU3863:No Gambling
Problem Description One day, Flyvan
introduce
d a new game to his two friends, Oregon Maple and Grape
·
2015-11-03 21:28
HDU
2015-11-02-01-当年尝试应聘F7海外技术支持所写的英文自我介绍
Itisreallymyhonortohavethisopportunityforainterview,IhopeIcanmakeagoodperformancetoday.NowIwill
introduce
myselfbriefly.Iam26yearsold
bxh7425014
·
2015-11-02 22:00
Sell Text Links
n the current harsh economic climate and to attract more sales, we will
introduce
new payout methods
·
2015-11-02 19:23
text
[漫画]枪王黑泽
introduce
一位正在初中的不起眼的男生却有着非常猥亵的习惯,每天傍晚放学后都会去女厕进行每日必修的“日常功课”,在一次意外中被名为北原的矮个子女生发现,从此平静的生活便迎来了变革。
·
2015-11-02 19:25
dotLucene 系列文章
Introduce
dotLucene 系列一 --- 一个小例子 Index dotLucene 系列二 --- index 上 dotLucene 系列三 --- index
·
2015-11-02 19:56
Lucene
javascript学习随笔(二)原型prototype
1、类方法;2、对象方法;3、原型方法;注意三者异同 例: 1 function People(name){ 2 this.name=name; 3 //对象方法 4 this.
Introduce
·
2015-11-02 19:32
JavaScript
上一页
55
56
57
58
59
60
61
62
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他