IT技术
文章平均质量分 61
每日一题
这个作者很懒,什么都没留下…
展开
-
Linux bash keyboard shortcut(Linux最常用的的命令行快捷键)
Ctrl + AGo to the beginning of the line you are currently typing on(定位行首)Ctrl + EGo to the end of the line you are currently typing on(定位行尾)Ctrl + L Clears the Screen, s翻译 2014-11-28 01:19:25 · 1095 阅读 · 0 评论 -
Linkedin工程师是如何优化他们的Java代码的
最近在刷各大公司的技术博客的时候,我在Linkedin的技术博客上面发现了一篇很不错博文。这篇博文介绍了Linkedin信息流中间层Feed Mixer,它为Linkedin的Web主页,大学主页,公司主页以及客户端等多个分发渠道提供支撑(如下图所示)。在Feed Mixer里面用到了一个叫做SPR(念“super”)的库。博文讲的就是如何优化SPR的java代码。下面就是他们总结转载 2015-01-25 07:34:18 · 415 阅读 · 0 评论 -
Java Enum Tutorial: 10 Examples of Enum in Java
Java Enum Tutorial: 10 Examples of Enum in JavaWhat is Enum in Java Enum in Java is a keyword, a feature which is used to represent fixed number of well known values in Java, For example转载 2015-01-25 10:12:46 · 574 阅读 · 0 评论 -
Javascript自学积累(将不时更新)
var canFly = function(){ return true; }; window.isDeadly = function(){ return true; }; assert( isNimble() && canFly() && isDeadly(), "Still works, even though isNimble is moved." ); function isNimb原创 2014-12-24 12:33:14 · 506 阅读 · 0 评论 -
想学程式设计,你怎么能错过这 31 个学 Coding 的网站
以下为大家介绍的这 31 个线上学习 Coding 的资源,有专门给儿童、初学者、想成为 App 开发者、前端工程师、后端工程师、资料科学家、UX 设计师的 …… 只要你有毅力,好好定下心来运用这些资源来学习,几个月内成为开发者、设计师完全不是难事!不信?那就亲自去体验看看吧。1. MIT Open Courses WareMIT 拥有大量工程和资工相关的课程,它提供了所有的转载 2014-12-24 08:19:08 · 1142 阅读 · 0 评论 -
实现各种经典算法的网页(以后有新的将实时更新)
JAVA Algorithm原创 2014-12-23 01:34:05 · 445 阅读 · 0 评论 -
【未读好文章】
实例讲解 SQL 注入攻击15个提高编程技巧的JavaScript工具原创 2015-01-13 15:00:28 · 330 阅读 · 0 评论 -
面向对象编程经典例题 --- 收银系统设计
SALES TAXES Basic sales tax is applicable at a rate of 10% on all goods, except books, food, and medical products that are exempt. Import duty is an additional sales tax applicable on all imported原创 2014-12-19 11:06:31 · 2235 阅读 · 0 评论 -
GeeksForGeeks java和c++的继承区别
Comparison of Inheritance in C++ and JavaThe purpose of inheritance is same in C++ and Java. Inheritance is used in both languages for reusing code and/or creating is-a relationship. There a翻译 2015-01-09 01:53:31 · 433 阅读 · 0 评论 -
GeeksForGeeks C++与Java之间virtual关键字的不同之处
How does default virtual behavior differ in C++ and Java ?Default virtual behavior of methods is opposite in C++ and Java:In C++, class member methods are non-virtual by default. They can翻译 2015-01-09 02:46:35 · 693 阅读 · 0 评论 -
Java: instanceOf vs getClass
The reason that I favor the instanceof approach is that when you use the getClassapproach, you have the restriction that objects are only equal to other objects of the same class, the same run tim转载 2015-01-26 23:49:48 · 430 阅读 · 0 评论 -
推荐!国外程序员整理的Java资源大全
http://www.importnew.com/14429.html构建这里搜集了用来构建应用程序的工具。Apache Maven:Maven使用声明进行构建并进行依赖管理,偏向于使用约定而不是配置进行构建。Maven优于Apache Ant。后者采用了一种过程化的方式进行配置,所以维护起来相当困难。Gradle:Gradle采用增量构建。Gradle通过Gr转载 2015-01-08 13:59:32 · 464 阅读 · 0 评论 -
GeekForGeeks 何时在c++中使用初始化列表
When do we use Initializer List in C++?Initializer List is used to initialize data members of a class. The list of members to be initialized is indicated with constructor as a comma separate翻译 2015-01-09 02:28:23 · 633 阅读 · 0 评论 -
Why Enum Singleton are better in Java
Why Enum Singleton are better in JavaEnum Singletons are new way to implement Singleton pattern in Java by using Enum with just one instance. Though Singleton pattern in Java exists from l转载 2015-01-25 10:38:04 · 492 阅读 · 0 评论