
java
taoqick
这个作者很懒,什么都没留下…
展开
-
Mac和Eclipse不同版本JDK切换 [Debug]
mac上最终安装目录(版本号根据情况略有不同) JDK 1.6: /Library/Java/JavaVirtualMachines/1.6.0.jdkJDK 1.7: /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdkJDK 1.8: /Library/Java/JavaVirtualMachines/jdk1.8.0_65.jdk 所以主要是改JAVA_HOME和PATH: export JAVA_6_HOME=`/usr/libexec/java转载 2020-09-30 11:35:57 · 621 阅读 · 0 评论 -
Java中垃圾回收和静态类型
今天在网上看到一个讨论命题:当一个单例的对象长久不用时,会不会被jvm的垃圾收集机制回收。原文链接:https://blog.youkuaiyun.com/zhengzhb/article/details/7331354 下面就对Java中的垃圾回收和静态类型做一些总结: 一、Java中的内存分配 1、stack(栈),用于装变量和引用类型。如基本类型和引用类型的引用变量。 2、heap(堆) ,用于装n...转载 2019-12-19 19:34:01 · 555 阅读 · 0 评论 -
How To Install Java with Apt-Get on Ubuntu 16.04
IntroductionJava and the JVM (Java's virtual machine) are widely used and required for many kinds of software. This article will guide you through the process of installing and managing different vers...转载 2018-03-02 17:28:47 · 201 阅读 · 0 评论 -
C++和java多态的区别
转自: http://developer.51cto.com/art/201104/253549.htm转载 2014-10-25 23:48:14 · 604 阅读 · 0 评论 -
Java多线程中Sleep与Wait的区别
转自: http://uule.iteye.com/blog/1106710转载 2014-10-25 23:17:57 · 599 阅读 · 0 评论 -
CareerCup Sort an array in a special way
Give you an array which has n integers,it has both positive and negative integers.Now you need sort this array in a special way.After that,the negative integers should in the front,and the positive in转载 2014-01-10 23:29:48 · 1183 阅读 · 0 评论 -
求正整数n划分因子乘积最大的一个划分及此乘积
问题描述: 给定一个正整数n, 则在n所有的划分中, 求因子乘积最大的一个划分及此乘积。 例如:8 = {8}, {7, 1}, {6, 2}, {5, 3}, {4, 4}, {3, 3, 2}, {2, 2, 2, 2} 等,那么在这些当中,3 * 3 * 2 的乘积最大,所以输出整个划分{3,3,2}和这个乘积18. 算法分析: 一个结论:对于一转载 2014-08-17 10:02:40 · 2383 阅读 · 0 评论 -
详解UML中的聚合,关联,泛化,接口等关系
1. Overview UML设计类中,类的关系分为Generalization(泛化),Dependency(依赖关系)、Association(关联关系)、Aggregation(聚合关系)、Composition(组合关系)五种! 2. Generalization(泛化) Generalization(泛化)表现为继承或实现关系(is a)。具体形式为类与类之间的继承关系,接口与接口...转载 2014-05-05 10:58:18 · 1502 阅读 · 0 评论 -
深入浅出单例Singleton设计模式
转自:http://blog.youkuaiyun.com/haoel/article/details/4028232 深入浅出单实例Singleton设计模式 陈皓 前序 单实例Singleton设计模式可能是被讨论和使用的最广泛的一个设计模式了,这可能也是面试中问得最多的一个设计模式了。这个设计模式主要目的是想在整个系统中只能出现一个类的实例。这样做当然是有必然的,比如你的软...转载 2014-03-17 20:32:47 · 844 阅读 · 0 评论 -
CareerCup Find the diameter of the tree
Given a tree in the form of parent pointers of every node (for root assume parent pointer to be null), write code to find the diameter of tree. -----------------------------------------------------转载 2014-03-08 18:58:21 · 699 阅读 · 0 评论 -
CareerCup String getSentence(String text, Set<String> dictionary); O(n)
String getSentence(String text, Set<String> dictionary);// text is a string without spaces, you need to insert spaces into text, so each word seperated by the space in the resulting string exis...转载 2014-02-24 00:04:27 · 931 阅读 · 0 评论 -
Java集合类ArrayList循环中删除特定元素
适合各种集合类的删除: 在项目开发中,我们可能往往需要动态的删除ArrayList中的一些元素。 一种错误的方式: [java] view plaincopy for(int i = 0 , len= list.size();i if(list.get(i)==XXX){ list.remove(i);转载 2014-01-16 17:46:12 · 695 阅读 · 0 评论 -
DP for bombs
There are n bombs in a big circle,and each bomb has a value and a 'effect range'.If you detonated a bomb,you will get this bomb's value,but a bomb can have effect on the neighbors which the distance转载 2014-01-16 19:24:39 · 906 阅读 · 0 评论