Java编程思想?初始化与清理
作者:Darker 发布时间:[ 2016/7/6 15:13:41 ] 推荐标签:测试开发技术 Java
iii.涉及基本类型的重载
基本类型的重载涉及的东西并不是很多.只是涉及了两个概念..扩展转型和窄化转型.
扩展转型:
package com.thinking.in.java;
public class Main {
void f1(char x) {System.out.print("f1(char) ");}
void f1(byte x) {System.out.print("f1(byte) ");}
void f1(short x) {System.out.print("f1(short) ");}
void f1(int x) {System.out.print("f1(int) ");}
void f1(long x) {System.out.print("f1(long) ");}
void f1(float x) {System.out.print("f1(float) ");}
void f1(double x) {System.out.print("f1(double) ");}
void f2(byte x) {System.out.print("f2(byte) ");}
void f2(short x) {System.out.print("f2(short) ");}
void f2(int x) {System.out.print("f2(int) ");}
void f2(long x) {System.out.print("f2(long) ");}
void f2(float x) {System.out.print("f2(float) ");}
void f2(double x) {System.out.print("f2(double) ");}
void f3(short x) {System.out.print("f3(short) ");}
void f3(int x) {System.out.print("f3(int) ");}
void f3(long x) {System.out.print("f3(long) ");}
void f3(float x) {System.out.print("f3(float) ");}
void f3(double x) {System.out.print("f3(double) ");}
void f4(int x) {System.out.print("f4(int) ");}
void f4(long x) {System.out.print("f4(long) ");}
void f4(float x) {System.out.print("f4(float) ");}
void f4(double x) {System.out.print("f4(double) ");}
void f5(long x) {System.out.print("f5(long) ");}
void f5(float x) {System.out.print("f5(float) ");}
void f5(double x) {System.out.print("f5(double) ");}
void f6(float x) {System.out.print("f6(float) ");}
void f6(double x) {System.out.print("f6(double) ");}
void f7(double x) {System.out.print("f7(double) ");}
void testConstVal() {
System.out.print("5: ");
f1(5);f2(5);f3(5);f4(5);f5(5);f6(5);f7(5);
}
void testChar() {
char x = 'x';
System.out.print("char: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
void testByte() {
byte x = 0;
System.out.print("byte: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
void testShort() {
short x = 0;
System.out.print("short: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
void testInt() {
int x = 0;
System.out.print("int: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
void testLong() {
long x = 0;
System.out.print("long: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
void testFloat() {
float x = 0;
System.out.print("float: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
void testDouble() {
double x = 0;
System.out.print("double: ");
f1(x);f2(x);f3(x);f4(x);f5(x);f6(x);f7(x);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Main m = new Main();
m.testConstVal();m.testChar();m.testByte();m.testShort();
m.testInt();m.testLong();m.testFloat();m.testDouble();
}
}
/* Output:
5: f1(int) f2(int) f3(int) f4(int) f5(long) f6(float) f7(double)
char: f1(char) f2(int) f3(int) f4(int) f5(long) f6(float) f7(double)
byte: f1(byte) f2(byte) f3(short) f4(int) f5(long) f6(float) f7(double)
short: f1(short) f2(short) f3(short) f4(int) f5(long) f6(float) f7(double)
int: f1(int) f2(int) f3(int) f4(int) f5(long) f6(float) f7(double)
long: f1(long) f2(long) f3(long) f4(long) f5(long) f6(float) f7(double)
float: f1(float) f2(float) f3(float) f4(float) f5(float) f6(float) f7(double)
double: f1(double) f2(double) f3(double) f4(double) f5(double) f6(double) f7(double)
*///:~
上面这段代码其实涉及到了扩展转型,扩展转型:将存储数据信息量小的类型,转换成存储数据信息量较大的类型.从testConstVal()函数中可以看出来了.我们传递的int = 5..是个int值常量.在f1()-f4()中都能够找到可以接收int的参数.但是在f5()-f7()中无法找到能够接收int类型的函数,那么这里会使用到扩展转型.将int = 5提升为long,float,double.因为扩展转型是不存在数据信息丢失的问题.因此这种转化是相对安全的.这里有一个特例,针对char类型,如果没有找到与char类型匹配的函数,会直接将char转化成int类型.
窄化转型:
public class Main {
void f1(char x) { System.out.print("f1(char)"); }
void f1(byte x) { System.out.print("f1(byte)"); }
void f1(short x) { System.out.print("f1(short)"); }
void f1(int x) { System.out.print("f1(int)"); }
void f1(long x) { System.out.print("f1(long)"); }
void f1(float x) { System.out.print("f1(float)"); }
void f1(double x) { System.out.print("f1(double)"); }
void f2(char x) { System.out.print("f2(char)"); }
void f2(byte x) { System.out.print("f2(byte)"); }
void f2(short x) { System.out.print("f2(short)"); }
void f2(int x) { System.out.print("f2(int)"); }
void f2(long x) { System.out.print("f2(long)"); }
void f2(float x) { System.out.print("f2(float)"); }
void f3(char x) { System.out.print("f3(char)"); }
void f3(byte x) { System.out.print("f3(byte)"); }
void f3(short x) { System.out.print("f3(short)"); }
void f3(int x) { System.out.print("f3(int)"); }
void f3(long x) { System.out.print("f3(long)"); }
void f4(char x) { System.out.print("f4(char)"); }
void f4(byte x) { System.out.print("f4(byte)"); }
void f4(short x) { System.out.print("f4(short)"); }
void f4(int x) { System.out.print("f4(int)"); }
void f5(char x) { System.out.print("f5(char)"); }
void f5(byte x) { System.out.print("f5(byte)"); }
void f5(short x) { System.out.print("f5(short)"); }
void f6(char x) { System.out.print("f6(char)"); }
void f6(byte x) { System.out.print("f6(byte)"); }
void f7(char x) { System.out.print("f7(char)"); }
void testDouble() {
double x = 0;
System.out.print("double argument:");
f1(x);f2((float)x);f3((long)x);f4((int)x);
f5((short)x);f6((byte)x);f7((char)x);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Main m = new Main();
m.testDouble();
}
}
/* Output:
double argument:f1(double)f2(float)f3(long)f4(int)f5(short)f6(byte)f7(char)*///:~
我们可以看到,我们这次针对double = 0 这个常量进行测试,从f2()-f7()无法找到与double请求参数所匹配的函数.这里涉及到了窄化转型.由于没有合适的类型,因此只能将double进行窄化转型,转为float,long,int以此类推.因为我们如果想要函数正常运行,必须使用窄化转型,否则会报错.但是窄化转型会将存储数据信息量大的类型转化成存储数据信息小的类型.这样很容易导致数据信息丢失的情况.因此一般情况下是不推荐的.
iv.成员初始化
成员初始化没有什么过多可说的,我们只需要知道.在我们定义局部变量的时候,在定义的同时需要进行初始化操作,否则我们是无法使用当前的局部变量的.但是如果我们在一个类中定义了成员变量,那么我们可以在定义的时候不去进行初始化操作,Java会自动的帮我们执行初始化的操作.
//函数中的局部变量如果在定义的时候没被初始化,会出现异常.
void f(){
int i;
i++; //Error
}
//类中的成员变量,在被定义的时候被初始化了.
public class Main {
private int dint;
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println(new Main().dint); //init 0
}
}
v.静态数据的初始化
针对静态数据,还是有一些东西需要注意的,我们都知道静态数据在内存单元中只占用一块存储区域,无论有多少个对象创建.是一个作用于域范围的变量.无法当做局部变量去看待.并且当静态数据一旦被初始化之后,后续不会再次执行初始化的操作.
class Static{
public Static() {
// TODO Auto-generated constructor stub
}
public void Print(){
System.out.println("Static");
}
}
class TestStatic{
static Static s = new Static();
public TestStatic() {
// TODO Auto-generated constructor stub
s.Print();
s1.Print();
}
static Static s1 = new Static();
}
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
new TestStatic();
}
}
总结一下对象初始化的过程.比如说有一个类.那么对象被创建之前,JVM首先会找到类的指定路径.定位.class文件(字节码文件).然后JVM将.class文件装载.这时有关当前类的静态初始化操作将全部完成.(静态初始化只在Class对象首次加载的时候执行一次).当我们去new对象的时候,JVM会在堆区中开辟一块内存,内存首先被清0,然后将类中所有的变量进行初始化.后执行构造方法.
本文内容不用于商业目的,如涉及知识产权问题,请权利人联系SPASVO小编(021-61079698-8054),我们将立即处理,马上删除。
相关推荐
Java性能测试有哪些不为众人所知的原则?Java设计模式??装饰者模式谈谈Java中遍历Map的几种方法Java Web入门必知你需要理解的Java反射机制知识总结编写更好的Java单元测试的7个技巧编程常用的几种时间戳转换(java .net 数据库)适合Java开发者学习的Python入门教程Java webdriver如何获取浏览器新窗口中的元素?Java重写与重载(区别与用途)Java变量的分类与初始化JavaScript有这几种测试分类Java有哪四个核心技术?给 Java开发者的10个大数据工具和框架Java中几个常用设计模式汇总java生态圈常用技术框架、开源中间件,系统架构及经典案例等
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11热门文章
常见的移动App Bug??崩溃的测试用例设计如何用Jmeter做压力测试QC使用说明APP压力测试入门教程移动app测试中的主要问题jenkins+testng+ant+webdriver持续集成测试使用JMeter进行HTTP负载测试Selenium 2.0 WebDriver 使用指南