访问权限控制的等级,从最大权限到最小权限:public proteced 包访问权限 private 6.1 包:库单元 编译单元 .java 每个编译单元只能有一个public类 6.1.1 代码组织 库名 小写 6.1.2 创建独一无二的包名 sudo cd /usr/libexec ./jav ...
分类:
编程语言 时间:
2019-10-31 00:49:33
阅读次数:
80
5.6 成员初始化 方法的局部变量 未初始化 编译提示 类的数据成员 基本类型(boolean char byte short int long float double )未初始化,有初值 5.6.1 指定初始化 类成员变量定义(注意float f = 3.14f) 对象初始化 5.7 构造器初始 ...
分类:
编程语言 时间:
2019-10-27 15:10:26
阅读次数:
91
什么是思维 “思维”一词在英语中为thinking,在汉语中,“思维”与“思考”、“思索”是同义词或近义词。《词源》中说:“思维就是思索、思考的意思。” 思维科学认为,思维是人接受信息、存贮信息、加工信息以及输出信息的活动过程,而且是概括地反映客观现实的过程,这就是思维本质的信息论观点。 从生理学上 ...
分类:
其他好文 时间:
2019-10-05 20:51:40
阅读次数:
260
existing in the mind; belonging to the thinking subject rather than to the object of thought (opposed to objective). pertaining to or characteristic o ...
分类:
其他好文 时间:
2019-09-30 13:03:54
阅读次数:
140
可以。 接口是常量值和方法定义的集合。接口是一种特殊的抽象类。 java类是单继承的。classB Extends classA java接口可以多继承。Interface3 Extends Interface0, Interface1, interface…… 不允许类多重继承的主要原因是,如果A ...
分类:
编程语言 时间:
2019-09-12 00:01:17
阅读次数:
186
若String后接一‘+’运算符,其后元素自动转化为String类型 注意:若对对象赋值另一对象,操作对应的是引用,如c=d,则c和d都指向原来d指向的对象 生成随机数:Random rand=new Random(47);(这里47表示随机数种子) int j=rand.nextInt(100)+ ...
分类:
编程语言 时间:
2019-09-08 13:39:40
阅读次数:
102
最近在面试过程中,有的面试官针对我的项目问的一些问题令我对自我的项目和经历有了一些新的思考,于是决定花时间来重新整理一下我的项目。 基于美学分析下的多任务CNN显着性分布预测 Motivation: 美学+显著性强相关 多任务CNN Multitask Learning (MTL) is an in ...
分类:
其他好文 时间:
2019-08-30 19:32:47
阅读次数:
89
本文中概念,代码均出自《Thinking in Java》代码示范如下: · for循环中应用:class Test{ public static void print(String s){ System.out.println(s); } public static void main(Strin... ...
分类:
编程语言 时间:
2019-08-28 11:06:01
阅读次数:
91
Intro Thinking performance. Identify the target framerate, aim your approach on hitting that target framerate. Everything needs to be as efficient as ...
分类:
其他好文 时间:
2019-08-25 16:29:55
阅读次数:
188
http://www.immersedgames.com/gamification-vs-game-based-learning/ With the growth in popularity of video games among K-12 students over the last few y ...
分类:
其他好文 时间:
2019-07-29 14:09:30
阅读次数:
101