Technical problem:

0.read: Scanner input= new Scanner(System.in)

  1. random#: x=(int)(Math.random()*10) ,makes 0<=x<10.

Random class: Random ran=new Random(3);

Ran.nextInt();

  1. Switch(status){

Case 0: balabala;

Break;

Case 1:balabala;

Break;

Default: balabala;

//System.exit(1);

}

  1. Conditional expressions

Y=(x>0)?1:-1;

  1. op precedence

1==1^1&&1||1

  1. Math:ceil,floor, rint , round

6.char:

(int)char

isUpperCase

toLowerCase

When reading a char,using nextLine(),and use line.charAt(0);

  1. String

S1.charAt(1)

S1.concat(s2) <=>s3=s1+s2 (‘a’,2,+= is OK )

S1.equalsIgnoreCase(s2)

S1.compareToIgnoreCase(s2)

S1.endsWith(suffix2)

S1.contains(s2)

S1.substring(0,1) not include 1;

S1.indexOf(ch,fromIndex)

S1.lastIndexof(S,fromIndex)

X=Integer.parseInt(s1); converting to int

  1. formatting output

System.out.printf(“%4.2f”,x);

  1. Passing arguments of functions

Swap :hard to implement

Array is ok;

  1. Array:int[] A = new int[100];

Int[][] dis= new int[5][5];

A.length

For(int t:a){}

A1=a2;

Function with array Print(int[] array)    print(new int[]{1,2,3})

Variable length arg func printMax(double... number)

Arrays.sort(a)

Arrays.binarySearch(a,11)

Arrays.equals(a1,a2)

Arrays.fill(a1,5)

  1. Class

toString

Constructor

It’s Reference type

Static :class variable

Public: without it,the method can be only used in the package.

Private:”encapsulation” using set&&get function to modify

Protected:access by subclass in another package;

OBJECTIVE THINKING

Extends:

Super() :constructor

Super.method

  1. ArrayList

ArrayList<String> ss= new ArrayList<>(Arrays.asList(a));

Ss.size();ss.add(“A”);ss.indexOf(“A”);ss.get(0);ss.remove(“A”);ss.isEmpty();

Collections.sort(list);Collections.max(list);

  1. throw:
    public void method()

Throw Exception1,Exception2...

IllegalArgumentException ex= new IllegalArgumentException(“wrong arg”);

Throw ex;

Try

Catch

  1. File Class

File file=new FILE(“input.txt”)

File.length();

File.exists();

PrintWriter output=new PrintWriter(filename);

Output.print();

Scanner input=new Scanner(file);

JAVA期末考试整理的更多相关文章

  1. Java期末考试冲刺总结

    经过长达将近三个小时的冲刺,我感觉身心俱疲,但它无法掩盖我敲代码的欲望! 三个小时我只实现了公文流转系统的的部分功能. 我深刻的意识到建民老师说的这套关系之复杂,它真的是太复杂了!!!没有系统的梳理, ...

  2. java 期末考试复习

      //Scanner这样写? Scanner input = new Scanner(System.in); //不断获得下一个单词 names[i] = toTitleCase(input.nex ...

  3. java期末考试

    水仙花数 package txt; public class shuixianhua { public static void main(String[] args) { // TODO Auto-g ...

  4. Java期末考试编程题复习

    在程序中定义Person类,为该类编写如下字段.构造器.访问器.修改器和相应的其他方法.(20分) <1>在Person类中定义两个字段: 私有访问权限,类型为String的name字段: ...

  5. Java 期末考试

    一: 题目:打印出100-999之间所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身.   例如:153是一个"水仙花 ...

  6. Java开发工程师(Web方向) - 03.数据库开发 - 期末考试

    期末考试 编程题 本编程题包含4个小题,覆盖知识点从基础的JDBC.连接池到MyBatis. 1(10分) 有一款在线教育产品“天天向上”主要实现了在手机上查看课程表的功能.该产品的后端系统有一张保存 ...

  7. 中国MOOC_面向对象程序设计——Java语言_期末考试编程题_1细胞自动机

    期末考试编程题 返回   这是期末考试的编程题 温馨提示: 1.本次考试属于Online Judge题目,提交后由系统即时判分. 2.学生可以在考试截止时间之前提交答案,系统将取其中的最高分作为最终成 ...

  8. 中国MOOC_零基础学Java语言_期末考试的编程题_1二进制的前导的零

    期末考试的编程题 返回   这是期末考试的编程题,在60分钟内,你可以多次提交,直到正确为止. 温馨提示: 1.本次考试属于Online Judge题目,提交后由系统即时判分. 2.学生可以在考试截止 ...

  9. 复旦大学2015--2016学年第二学期高等代数II期末考试情况分析

    一.期末考试成绩班级前几名 胡晓波(90).杨彦婷(88).宋卓卿(85).唐指朝(84).陈建兵(83).宋沛颖(82).王昊越(81).白睿(80).韩沅伯(80).王艺楷(80).张漠林(80) ...

随机推荐

  1. NOIP2012 普及组 寻宝

    题目描述 Description 传说很遥远的藏宝楼顶层藏着诱人的宝藏.小明历尽千辛万苦终于找到传说中的这个藏宝楼,藏宝楼的门口竖着一个木板,上面写有几个大字:寻宝说明书.说明书的内容如下: 藏宝楼共 ...

  2. easyui combox 手动添加项

    $('#comzwcf').combobox({ valueField: 'id', textField: 'text', }); $.ajax({ url: '/Provider/HandlerIr ...

  3. AngularJS 使用ng-repeat报错

    [ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify uniq ...

  4. redis 4.0.8 源码包安装集群

    系统:centos 6.9软件版本:redis-4.0.8,rubygems-2.7.7,gcc version 4.4.7 20120313,openssl-1.1.0h,zlib-1.2.11 y ...

  5. 网络协议学习(2)---IP地址

    一.IPv4地址 IPv4地址为32bit地址,分为5类(ABCDE,这里不讨论特殊用途的D和E类). 通常我们八位一看,写成4个部分,例如:00000000 00000000 00000000 00 ...

  6. Python装饰器用法

    在Python中,装饰器一般用来修饰函数,实现公共功能,达到代码复用的目的.在函数定义前加上@xxxx,然后函数就注入了某些行为,很神奇!然而,这只是语法糖而已. 场景 假设,有一些工作函数,用来对数 ...

  7. Python实现im2col和col2im函数

    今天来说说im2col和col2im函数,这是MATLAB中两个内置函数,经常用于数字图像处理中.其中im2col函数在<MATLAB中的im2col函数>一文中已经进行了简单的介绍. 一 ...

  8. 【转】RPC简单介绍

    RPC简单介绍 RPC 1. RPC是什么 RPC(Remote Procedure Call Protocol)——远程过程调用协议,它是一种通过网络从远程计算机程序上请求服务,而不需要了解底层网络 ...

  9. Redux 入门到高级教程

    Redux 是 JavaScript 状态容器,提供可预测化的状态管理. (如果你需要一个 WordPress 框架,请查看 Redux Framework.) Redux 除了和 React 一起用 ...

  10. idea设置条件断点

    只有在指定的条件下才触发断点,在idea中如何设置呢? 方法: 按Ctrl+Shift+F8弹出View Breakpoints 在Condition设置触发条件 结果: 源码 https://git ...