JAVA静态方法形式上可以重写,但从本质上来说不是JAVA的重写。因为静态方法只与类相关,不与具体实现相关,声明的是什么类,则引用相应类的静态方法(本来静态无需声明,可以直接引用),看下例子:
Java代码
class Base{ static void a( ){System.out.println("A"); } ...
分类:
编程语言 时间:
2015-06-02 09:28:10
阅读次数:
124
1.发送POST请求
curl --data "value=lihzhiming%20&data=jiajia&ia=234" "localhost:8080"
默认发送的是GET请求,如何加上--data也就是需要附加参数,那么也是POST请求,以上就是加上参数value,data,ia
2.发送GET请求
curl "localhost:8080?value=lihzhim...
分类:
Web程序 时间:
2015-06-02 09:28:17
阅读次数:
198
Spider类定义了如何爬取某个网站。包括爬取的动作以及如何从网页的内容中提取结构化数据。
Spider就是定义爬取的动作及分析某个网页的地方。爬取的循环:①以初始的URL初始化Request,并设置回调函数。当该request下载完毕并返回时,将生成response,并作为参数传给该回调函数。
spider中初始的request是通过调用start_requests()来获取的。start_r...
分类:
其他好文 时间:
2015-06-02 09:29:28
阅读次数:
440
数据可视化分为:科学可视化、信息可视化,可视化分析学这三个主要分支。
科学可视化,处理科学数据,面向科学和工程领域的科学可视化,研究带有空间坐标和几何信息的三维空间测量数据、计算模拟数据和医疗影像数据等,重点探索如何有效地呈现数据中几何、拓扑和形状特征。信息可视化,处理对象是非结构化、非几何的抽象数据,如金融交易、社交网络和文本数据,其核心挑战是如何针对大尺度高维数据减少视觉混淆对有用信...
分类:
其他好文 时间:
2015-06-02 09:28:30
阅读次数:
951
其他数据库对象
数据库对象种类
视图
视图介绍
视图是一种虚表.
视图建立在已有表的基础上, 视图赖以建立的这些表称为基表。
向视图提供数据内容的语句为SELECT 语句, 可以将视图理解为存储起来的 SELECT
语句.
视图向用户提供基表数据的另一种表现形式
视图的优点
限制数据访问
...
分类:
数据库 时间:
2015-06-02 09:27:45
阅读次数:
165
map...
分类:
其他好文 时间:
2015-06-02 09:26:38
阅读次数:
127
A perfect number is a number for which the sum of its proper divisors is exactly equal to the number. For example, the sum of the proper divisors of 28 would be 1 + 2 + 4 + 7 + 14
= 28, which means...
分类:
其他好文 时间:
2015-06-02 09:26:34
阅读次数:
154
A permutation is an ordered arrangement of objects. For example, 3124 is one possible permutation of the digits 1, 2, 3 and 4. If all of the permutations are listed numerically or
alphabetically, we...
分类:
其他好文 时间:
2015-06-02 09:28:13
阅读次数:
121
基于域名添加虚拟主机 (本例子的域名为 www.shop.com)
第一步:
进入apache\conf目录里,打开httpd.conf文件。
第二步:
找到配置项
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf
第三步:
开启该虚拟主机的配置项并写上注释
# 启用虚拟主机文件
# Virtual hosts
Inc...
分类:
其他好文 时间:
2015-06-02 09:28:31
阅读次数:
116
Balloon Comes!
气球来了!
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 22727 Accepted Submission(s): 8577
Problem Description
The con...
分类:
其他好文 时间:
2015-06-02 09:26:02
阅读次数:
125
1.sqlserver CAST 和 CONVERT函数
将某种数据类型的表达式显式转换为另一种数据类型。CAST 和 CONVERT 提供相似的功能。
语法
使用 CAST:
CAST ( expression AS data_type )
使用 CONVERT:
CONVERT (data_type[(length)], expression [, style])
参数
ex...
分类:
数据库 时间:
2015-06-02 09:26:41
阅读次数:
138
Given an array of integers, every element appears three times except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implement it without using...
分类:
其他好文 时间:
2015-06-02 09:27:36
阅读次数:
118
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input case...
分类:
其他好文 时间:
2015-06-02 09:25:09
阅读次数:
115
第一步:
先下载和安装好apache与php.
第二步:
进入apache\conf目录,打开httpd.conf文件。
第三步:
导入php模块,使php成为apache的一个模块
#apache与php整合的第一步
#把php作为apache的一个模块使用
LoadModule php5_module "D:/amp/php/php5apache2_2.dll"
第四步:
...
分类:
Web程序 时间:
2015-06-02 09:26:31
阅读次数:
177
Android 实现记住用户名和密码的功能结果演示:
源代码下载地址:https://github.com/GXS1225/Android————-.git分析(1)判断是否输入了账号和密码 if(name.trim().equals("")){
Toast.makeText(this, "请您输入用户名!", Toast.LENGTH_SHORT).show...
分类:
移动开发 时间:
2015-06-02 09:27:38
阅读次数:
279
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the length is 3. For ...
分类:
其他好文 时间:
2015-06-02 09:24:48
阅读次数:
113
今天写一个新界面,需要从其他界面通过intent传来参数,就先拿到之后通过TextView的setText显示来看看传参是否正确,写法:TextView.setText(arg) (arg是int型),然后就玩命报错 “android.content.res.Resources$NotFoundException: String resource ID #0x1”,一直不知道怎么回事,看过API...
分类:
移动开发 时间:
2015-06-02 09:24:59
阅读次数:
99