D - D
Description
These days, I am thinking about a question, how can I get a problem as easy as A+B? It is fairly difficulty to do such a thing. Of course, I got it after many waking ni...
分类:
其他好文 时间:
2015-02-04 14:48:06
阅读次数:
131
In preparation for a R Workgroup meeting, I started thinking about what would be my "Top 5 R Functions". I ruled out the functions for basic mechanics...
分类:
其他好文 时间:
2015-02-04 10:44:09
阅读次数:
113
操作系统: win8.1编译环境 JDK1.6编辑器 notepad++第48页练习81 下载相应程序包 Thinking in Java 4ed - CODE2 设置相应的CLASSPATH 添加F:\Software\jdk1.6\Java4edCODE;用 javac 命令 编译 F:\Sof...
分类:
编程语言 时间:
2015-02-01 15:57:39
阅读次数:
303
对于本科非计算机专业的跨考生,编程能力还是有一定欠缺的。最近开始接触一个Java工程的开发(编译检测相关)项目,自己之前几乎没怎么接触过Java。便开始学习恶补下,记录下这两天看书的理解的几点东西,最为自己的学习笔记吧。1、Java中的初始化加载顺序: 当函数内有static关键字修饰的静态变量或....
分类:
编程语言 时间:
2015-02-01 00:33:51
阅读次数:
288
最开始学习java语言的时候学过生成javadoc不过当时只是用windows命令行生成。读了这里的javadoc温故而知新发现其实我们做的项目就用到了一些注释,只是没有用eclipse
生成这份文档,通过查阅,最终补全了这份知识。
一、书中的代码:
//:object/HelloDate.java
package unit2;
import java.util.Date;
/**
*...
分类:
编程语言 时间:
2015-01-30 22:43:41
阅读次数:
224
《C++编程思想》 【原书名】 Thinking in C++ 【原出版社】 McGraw Hill 【作者】 Bruce Eckel 【译者】 刘宗田 等 【丛书名】 计算机科学丛书 【出版社】 机械工业出版社 除了讲述语言之外,有一定的工程性,从设计者的角度来描述C++怎样应用在实际的项目中。语...
分类:
编程语言 时间:
2015-01-30 15:23:24
阅读次数:
156
摘录一个网友对《java语言程序设计》基础篇和进阶篇(原书第8版)的评价看了N本Java著作,印象深刻的有《Thinking in Java》、《Core Java》上下卷,但是唯独Daniel Liang所著的此书解释得最为简单清晰,即使我接触Java已有5年,工作中也都是使用Java,但是仍能从...
分类:
编程语言 时间:
2015-01-29 22:26:38
阅读次数:
150
Determine whether an integer is a palindrome. Do this without extra space.
click to show spoilers.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of convert...
分类:
其他好文 时间:
2015-01-29 12:50:33
阅读次数:
138
题目链接:Palindrome Number
Determine whether an integer is a palindrome. Do this without extra space.
Some hints:
Could negative integers be palindromes? (ie, -1)
If you are thinking of converting the...
分类:
其他好文 时间:
2015-01-28 21:30:17
阅读次数:
208
1,Set:
-1,包含不重复元素的集合。准确来讲,Set不包含这样子的元素,e1和e2元素,e1.equals(e2)返回false,并且最多包含一个null元素。
-2,Set构造方法规定,所有构造方法必须创建一个不包含重复元素的集合。
-3,某些Set对其包含的元素有所限制,比如不包含null元素。
2,Set具体子类讲解,摘自《Thinking In...
分类:
其他好文 时间:
2015-01-26 10:16:11
阅读次数:
247