摘要: class Base{ int x = 1; static int y = 2; } class Subclass extends Base{ int x = 4; int y = 5; } public class Test02{ ... 阅读全文
posted @ 2015-09-22 12:41 iucforever 阅读(325) 评论(0) 推荐(0) 编辑
摘要: class Base{ int x = 1; static int y = 2; String name(){ return "mother"; } static String staticname(){ return "... 阅读全文
posted @ 2015-09-22 12:40 iucforever 阅读(4796) 评论(0) 推荐(0) 编辑
摘要: SMART原则 目标管理是使管理者的工作由被动变为主动的一个很好的管理手段,实施目标管理不仅是为了利于员工更加明确高效地工作,更是为了管理者将来对员工实施绩效考核提供了考核目标和考核标准,使考核更加科学化、规范化,更能保证考核的公正、公开与公平。 1.绩效指标必须是具体的(Specific) 2. 绩效指标必须是可以衡量的(Measurable) 3. 绩效指标必须... 阅读全文
posted @ 2015-09-21 11:35 iucforever 阅读(383) 评论(0) 推荐(0) 编辑
摘要: //例1——实例方法能够被覆盖 class Super{ String name(){ return "mother"; } } class Sub extends Super{ String name(){ return "baby"; } }... 阅读全文
posted @ 2015-09-20 22:58 iucforever 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 问题: 编程求一个整数数组的最大值、最小值、平均值和所有元素的和。 代码: public class Page99{ public static void main(String args[]){ int NumArray[]=new int[]{32,94,15,86,1533,-98,143,140,1... 阅读全文
posted @ 2015-09-20 00:14 iucforever 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 问题: 利用二维非矩阵数组输出下面的数字 0 1 2 2 3 4 3 4 5 6 代码: public class Page98{ public static void main(String args[]){ int NumArray[][] = new int [4... 阅读全文
posted @ 2015-09-20 00:13 iucforever 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 问题: 将一个数字与数组中的元素比较, 如果该数字存在数组中,给出该数字在数组中的位置; 如果该数字不在数组中,给出提示。 代码: public class Page84{ public static void main(String args[]){ int Num = 12; int Num... 阅读全文
posted @ 2015-09-20 00:11 iucforever 阅读(334) 评论(0) 推荐(0) 编辑
摘要: VMware Workstation与Hyper-V不兼容。请先从系统中移除Hyper-V角色,然后再运行VMware Workstation。 VMware Workstation与Hyper-V不兼容。请先从系统中移除Hyper-V角色,然后再运行VMware Workstation。 第一步: 第二步: 完成后提示重新启动,然后就可以安装了 win8,... 阅读全文
posted @ 2015-09-17 22:25 iucforever 阅读(10110) 评论(0) 推荐(0) 编辑
摘要: 新手指南: Linux 新手应该知道的 26 个命令 2015-9-6 14:51 评论:1收藏:13 原文:http://locez.com/Linux/common-command/作者: @Locez原创:Linux中国https://linux.cn/article-6160-1.html 当你进入了 Linux 的世界,在下载、安装了某个Linux... 阅读全文
posted @ 2015-09-15 20:47 iucforever 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2015-09-15 20:40 iucforever 阅读(157) 评论(0) 推荐(0) 编辑