java新手笔记5 类
1.进制转换
/*
企业发放的奖金根据利润提成。
利润(I)低于或等于10万元时,奖金可提10%;
利润高于10万元,低于20万元时,
低于10万元的部分按10%提成,高于10万元的部分,可提成7.5%;
20万到40万之间时,高于20万元的部分,可提成5%;
40万到60万之间时高于40万元的部分,可提成3%;
60万到100万之间时,高于60万元的部分,可提成1.5%,
高于100万元时,超过100万元的部分按1%提成,
从键盘输入当月利润I,求应发放奖金总数?
*/
import java.util.Scanner;
public class Demo1 { public static void main(String args[]) {
/*
System.out.println("二进制:4 " +Integer.toBinaryString(4));
System.out.println("八进制:16 " +Integer.toOctalString(16));
System.out.println("十六进制:10 " + Integer.toHexString(10));
int a = 12328;
int b,c,d,e,f;
//取个位
b = a % 10;
//c = a % 100 / 10;
c = a / 10 % 10;
d = a / 100 % 10;
e = a / 1000 % 10;
f = a / 10000;
System.out.println("b = " + b + "\tc = " + c);
System.out.println("d = " + d + "\te = " + e + "\tf = " + f); int a = 462,b,c,d,e,f;
if(a < 10){
System.out.println("1位数...");
} else if ( a < 100 ) {
b = a % 10;
c = a / 10 % 10;
System.out.println("2位数..." + b + c);
} else if ( a < 1000 ) {
b = a % 10;
c = a / 10 % 10;
d = a / 100 % 10;
System.out.println("3位数..." + b + c + d);
} else if ( a < 10000 ) {
b = a % 10;
c = a / 10 % 10;
d = a / 100 % 10;
e = a / 1000 % 10;
System.out.println("4位数..." + b + c + d + e);
} else {
b = a % 10;
c = a / 10 % 10;
d = a / 100 % 10;
e = a / 1000 % 10;
f = a / 10000;
System.out.println("5位数..." + b + c + d + e + f);
} Scanner scan = new Scanner(System.in);
System.out.println("请输入你信息姓名、年龄、成绩:");
String name = scan.next();//获取字符串
int age = scan.nextInt();//获取整型数字
double score = scan.nextDouble();
System.out.println("输入的信息如下:");
System.out.println("姓名:" + name + " 年龄:" + age + " 成绩:" + score); Scanner scan = new Scanner(System.in);
System.out.println("请输入利润:");
double I = scan.nextDouble();
double bound = 0;
//奖金方案
if(I <= 10) {
bound = I * 0.1;
} else if( I < 20 ) {
bound = 10 * 0.1 + (I - 10) * 0.075; // 35 10 10 0.075
} else if( I < 40 ) {
bound = 10 * 0.1 + 10 * 0.075 + (I - 20) * 0.05;
} else if( I < 60 ) {
bound = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + (I - 40) * 0.03;
} else if( I < 100 ) {
bound = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + 20 * 0.03 + (I - 60) * 0.015;
} else {
bound = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + 20 * 0.03 + 40 * 0.015 + (I - 100) * 0.01;
}
System.out.println("奖金:" + bound);
//String s = NULL;
*/
int a = 1, b = 6, c = 9;
if(a > b){
if(a > c){
if(b > c){
System.out.println("@:" + a + b + c);
} else {
System.out.println(" :" + a + c + b);
}
} else {
System.out.println(" :" + c + a + b);
}
} else {
if(b > c) {
if( a > c){
System.out.println(" :" + b + a + c);
} else {
System.out.println(" :" + b + c + a);
} } else {
System.out.println("** :" + c + b + a);
} } int year = 2012;
boolean isLeapYear = year % 400 == 0 || year % 4 == 0 && year % 100 != 0; }
}
2.封装类
//声明类 类封装
public class Student { String name;
char sex;
private int age;//属性私有
int sno;
//提供访问属性的方法 通过方法防止非法数据存入属性
void setAge() {
age = 30;
if(age > 150 || age < 0){
System.out.println("年龄不合法...");
age = 0;
} } int getAge() {
return age; //返回age属性值
} void study() {
System.out.println("学习!...");
} //方法
void speak() {
System.out.println("大家好!...");
} }
3.测试类
//声明类
public class StudentTest {
public static void main(String[] args){
Student o = new Student();//创建自定义对象
//o 学生对象 Student 类 int a = 20; System.out.println("o.name = " + o.name);
o.speak();//方法调用
o.study(); o.name = "张三";
o.sex = '男';
//o.age = -20;
o.setAge();
o.sno = 180; o.name = "张飞";
System.out.println("o.name = " + o.name);
System.out.println("o.sex = " + o.sex);
//System.out.println("o.age = " + o.age);
System.out.println("o.getAge() = " + o.getAge());
System.out.println("o.sno = " + o.sno); }
}
4.测试类1
//声明类
public class StudentTest1 {
public static void main(String[] args){
Student s = null;//声明对象的引用
//s.study(); new
s = new Student();//new 创建对象 实例化对象
s.name = "李四";
System.out.println("s.name = " + s.name);
s.study(); Student s2 = new Student();
s2.name = "张三";
System.out.println("s2.name = " + s2.name);
System.out.println("s.name = " + s.name);
s2.study(); }
}
5.类说明
//声明类
public class Obj { //状态 属性 实例变量
String name;
char sex;
int age; //行为 方法 动作
void speak() {
System.out.println("大家好!...");
} }
//////////////////////////////////
class ObjTest {
public static void main(String[] args){
Obj o = new Obj();//创建自定义对象
//Random ran = new Random(); System.out.println("o.name = " + o.name);
o.speak();
o.name = "张三";
o.sex = '男';
o.age = 20; o.name = "张飞";
System.out.println("o.name = " + o.name);
System.out.println("o.sex = " + o.sex);
System.out.println("o.age = " + o.age); }
}
6.类方法
//声明类
public class MethodTest1 { int a = 10;//与对象关联
//方法 无参数 无返回值
void method1() {
System.out.println("call method1()");
}
//返回值类型 add 方法名 ()传入参数
void add (int a, int b) {
int sum = a + b;
System.out.println("sum = " + sum);
}
//形参列表 数据类型 变量名
double caluSal(int job,int house,int bound) {
//System.out.println("sum = " + job + house + bound);
return job + house + bound;// return返回计算结果
} public static void main(String[] args){
MethodTest1 mt = new MethodTest1();
int b = mt.a;
System.out.println("b = " + b);
mt.method1();
mt.add(10, 6);//调用时 参数类型 个数与声明的方法匹配 double salary = mt.caluSal(8000,5000,6000); System.out.println("salary = " + salary);
//结果返回还需要处理
double result = salary * 0.05; System.out.println("result = " + result);
}
}
java新手笔记5 类的更多相关文章
- java新手笔记18 类比较
1.Shap类 package com.yfs.javase; public class Shape /*extends Object */{ //默认继承object object方法全部继承 // ...
- java新手笔记9 类的封装示例
1.bank类 package com.yfs.javase; //类封装 public class BankCard { //属性 int balance;//默认0 实例变量 分配给每个对象一个 ...
- java新手笔记11 类的静态属性、方法(单例)
1.Person类 package com.yfs.javase; public class Person { String name;//每个对象上分配 与对象绑定 int age; char se ...
- java新手笔记14 类继承示例
1.Person package com.yfs.javase; public class Person { private String name; private int age; private ...
- Java学习笔记——File类之文件管理和读写操作、下载图片
Java学习笔记——File类之文件管理和读写操作.下载图片 File类的总结: 1.文件和文件夹的创建 2.文件的读取 3.文件的写入 4.文件的复制(字符流.字节流.处理流) 5.以图片地址下载图 ...
- Java学习笔记之---类和对象
Java学习笔记之---类和对象 (一)类 类是一个模板,它描述一类对象的行为和状态 例如:动物类是一个类,动物们都有属性:颜色,动物们都有行为:吃饭 public class Dog { Stri ...
- java新手笔记8 包
1.main函数 public class MainParam { //考察main 方法的参数 args //运行时可以传入参数 参数类型 String public static void mai ...
- java新手笔记3 运算符&循环
1.包 2.运算符 public class Operator { public static void main(String[] args) { int a = 5; System.out.pri ...
- java新手笔记31 集合实现类
Person类: package com.yfs.javase; import java.util.Date; public class Person implements Comparable { ...
随机推荐
- Java笔记(二十六)……IO流上 字节流与字符流
概述 IO流用来处理设备之间的数据传输 Java对数据的操作时通过流的方式 Java用于操作流的对象都在IO包中 流按操作的数据分为:字节流和字符流 流按流向不同分为:输入流和输出流 IO流常用基类 ...
- globalfifo设备驱动
把globalmem中的全局内存变成一个FIFO,只有当FIFO中有数据的时候(即有进程把数据写到这个FIFO而且没有被读进程读空),读进程才能把数据读出,而且读取后的数据会从globalmem的全局 ...
- StreamWriter
public StreamWriter( string path, bool append ) 参数 path 类型:System.String要写入的完整文件路径. append 类型:System ...
- C++下字符串转换
引用自:http://blog.sina.com.cn/s/blog_a98e39a20101ari9.html 把最近用到的各种unicode下类型转换总结了一下,今后遇到其他的再补充: 1.str ...
- SSIS执行SQL任务时加入参数
昨天开发的SSIS包中,获取ERP系统parttran表时,数据量比较大,达到255万多,因为SQL执行的关系,致使处理时效率很慢,所以就想用增量更新的方法处理该表数据.这是增量更新的SQL任务集合, ...
- C#Winform窗口特效源码(1)
本文基于.Net开发,使用C#作为开发语言,分别包含以下效果: 移动无边框窗口.窗口移动限制(限制在屏幕内).桌面贴边自动隐藏(仿QQ隐藏窗口) 1.移动无边框窗口 采用了消息的方式,可以实现通过窗口 ...
- 在JSP页面中输出JSON格式数据
JSON-taglib是一套使在JSP页面中输出JSON格式数据的标签库. JSON-taglib主页: http://json-taglib.sourceforge.net/index.html J ...
- cocos2d-x简单动画
转自:http://4137613.blog.51cto.com/4127613/759610 这里只给出最基本的动画代码,具体使用要根据实际情况自己封装.最好自己开发一个编辑器.额外说一句,开发编辑 ...
- 高亮选中MEMO某一行
选中第5行 //转到指定行并选中这行的文本 procedure SelectLine(Memo1: TMemo; ln: Integer); begin Memo1.SelStart := SendM ...
- 浅谈C语言中的联合体
联合体union 当多个数据须要共享内存或者多个数据每次仅仅取其一时.能够利用联合体(union).在C Programming Language 一书中对于联合体是这么描写叙述的: 1)联合体是一个 ...