java中不常见的keyword:strictfp,transient

1.strictfp, 即 strict float point (精确浮点)。

  strictfp keyword可应用于类、接口或方法。使用 strictfp keyword声明一个方法时,该方法中全部的float和double表达式都严格遵守FP-strict的限制,符合IEEE-754规范。当对一个类或接口使用 strictfp keyword时,该类中的全部代码,包含嵌套类型中的初始设定值和代码,都将严格地进行计算。严格约束意味着全部表达式的结果都必须是 IEEE 754 算法对操作数预期的结果,以单精度和双精度格式表示。

  假设你想让你的浮点运算更加精确,并且不会由于不同的硬件平台所运行的结果不一致的话,能够用keywordstrictfp.

演示样例 1

  以下的演示样例演示了一个使用 strictfp 修饰符声明的类。

Java代码

package com.magical;

// Example of precision control with strictfp

public strictfp class MyClass {

public static void main(String[] args)

{

float aFloat = 0.6710339f;

double aDouble = 0.04150553411984792d;

double sum = aFloat + aDouble;

float quotient = (float)(aFloat / aDouble);

System.out.println("float: " + aFloat);

System.out.println("double: " + aDouble);

System.out.println("sum: " + sum);

System.out.println("quotient: " + quotient);

}

}

package com.magical;

// Example of precision control with strictfp

public strictfp class MyClass {

public static void main(String[] args)

{

float aFloat = 0.6710339f;

double aDouble = 0.04150553411984792d;

double sum = aFloat + aDouble;

float quotient = (float)(aFloat / aDouble);

System.out.println("float: " + aFloat);

System.out.println("double: " + aDouble);

System.out.println("sum: " + sum);

System.out.println("quotient: " + quotient);

}

}

执行结果:

float: 0.6710339

double: 0.04150553411984792

sum: 0.7125394529774224

quotient: 16.167336

2.transient

当串行化某个对象时,如果该对象的某个变量是transient,那么这个变量不会被串行化进去。也就是说,如果某个类的成员变量是transient,那么当通过

ObjectOutputStream把这个类的某个实例

保存到磁盘上时,实际上transient变量的值是不会保存的。由于当从磁盘中读出这个对象的时候,对象的该变量会没有被赋值。

另外这篇文章还提到,当从磁盘中读出某个类的实例时,实际上并不会运行这个类的构造函数,而是读取这个类的实例的状态,而且把这个状态付给这个类的对象。

import java.util.*;

public class LoggingInfo implements java.io.Serializable

{

private Date loggingDate = new Date();

private String uid;

private transient String pwd;

LoggingInfo(String user, String password)

{

uid = user;

pwd = password;

}

public String toString()

{

String password=null;

if(pwd == null)

{

password = "NOT SET";

}

else

{

password = pwd;

}

return "logon info: \n " + "user: " + uid +

"\n logging date : " + loggingDate.toString() +

"\n password: " + password;

}

}

import java.io.*;

public class Serializable{

public static  void main(String args[]){

LoggingInfo logInfo = new LoggingInfo("小徐", "不知道");

System.out.println(logInfo.toString());

try

{

ObjectOutputStream o = new ObjectOutputStream(

new FileOutputStream("logInfo.out"));

o.writeObject(logInfo);

o.close();

}

catch(Exception e) {//deal with exception

e.printStackTrace();

}

// To read the object back, we can write

try

{

ObjectInputStream in =new ObjectInputStream(

new FileInputStream("logInfo.out"));

LoggingInfo logInfo1 = (LoggingInfo)in.readObject();

System.out.println(logInfo1.toString());

}

catch(Exception e)

{//deal with exception

e.printStackTrace();

}

}

}

import java.util.*;

public class LoggingInfo_ implements java.io.Serializable

{

private Date loggingDate = new Date();

private String uid;

private transient String pwd;

public  LoggingInfo_()

{

this.uid = "小徐";

this.pwd = "不知道";

}

public String toString()

{

String password=null;

if(pwd == null)

{

password = "NOT SET";

}

else

{

password = pwd;

}

return "logon info: \n " + "user: " + uid +

"\n logging date : " + loggingDate.toString() +

"\n password: " + password;

}

}

import java.io.*;

public class Serializable_{

public static  void main(String args[]){

LoggingInfo_ logInfo_ = new LoggingInfo_();

System.out.println(logInfo_.toString());

try

{

ObjectOutputStream o = new ObjectOutputStream(

new FileOutputStream("logInfo_.out"));

o.writeObject(logInfo_);

o.close();

}

catch(Exception e) {//deal with exception

e.printStackTrace();

}

// To read the object back, we can write

try

{

ObjectInputStream in =new ObjectInputStream(

new FileInputStream("logInfo_.out"));

LoggingInfo_ logInfo_1 = (LoggingInfo_)in.readObject();

System.out.println(logInfo_1.toString());

}

catch(Exception e)

{//deal with exception

e.printStackTrace();

}

}

}

java中不常见的keyword:strictfp,transient,布布扣,bubuko.com

时间: 2024-12-21 04:56:03

java中不常见的keyword:strictfp,transient的相关文章

Java学习之道:Java中十个常见的违规编码

最近,我给Java项目做了一次代码清理工作.经过清理后,我发现一组常见的违规代码(指不规范的代码并不表示代码错误)重复出现在代码中.因此,我把常见的这些违规编码总结成一份列表,分享给大家以帮助Java爱好者提高代码的质量和可维护性. 这份列表没有依据任何规则或顺序,所有的这些都是通过代码质量工具包括CheckStyle,FindBugs和PMD检查出.一起来看下: 一.Eclipse编译器提供源代码格式输入 Eclipse提供自动源码格式选项,并且组织输入(删除未使用的代码).你可以使用下面的这

Java中的常见异常

Java中异常的三种处理方式:面试笔试也常被问 try-catch-finally throw和throws  

java中IO常见的IO流和file类理论总结

总结的很粗糙,以后时间富裕了好好修改一下. 1:Java语言定义了许多类专门负责各种方式的输入或者输出,这些类都被放在java.io包中.其中,所有输入流类都是抽象类InputStream(字节输入流),或者抽象类Reader(字符输入流)的子类:而所有输出流都是抽象类OutputStream(字节输出流)或者Writer(字符输出流)的子类. [首先需要明白的是:流是干什么的???(为了永久性的保存数据) 根据数据流向的不同分为输入流和输出流: 根据处理数据类型的不同分为字符流和字节流: ]

java中不常见的关键字:strictfp

1.strictfp, 即 strict float point (精确浮点). strictfp 关键字可应用于类.接口或方法.使用 strictfp 关键字声明一个方法时,该方法中所有的float和double表达式都严格遵守FP-strict的限制,符合IEEE-754规范.当对一个类或接口 使用 strictfp 关键字时,该类中的所有代码,包括嵌套类型中的初始设定值和代码,都将严格地进行计算.严格约束意味着所有表达式的结果都必须是 IEEE 754 算法对操作数预期的结果,以单精度和双

Java 中最常见的 5 个错误

在编程时,开发者经常会遭遇各式各样莫名错误.近日,Sushil Das在 Geek On Java上列举了 Java 开发中常见的 5 个错误,与君共「免」. 1.Null 的过度使用 避免过度使用 null 值是一个最佳实践.例如,更好的做法是让方法返回空的 array 或者 collection 而不是 null 值,因为这样可以防止程序抛出 NullPointerException.下面代码片段会从另一个方法获得一个集合: List<String> accountIds = person

Java中十个常见的违规编码

摘要:作者Veera Sundar在清理代码工作时发现一些常见的违规编码,因此,Veera Sundar把针对常见的一些违规编码总结成一份列表,以便帮助Java爱好者提高代码的质量和可维护性. 最近,我给Java项目做了一次代码清理工作.经过清理后,我发现一组常见的违规代码(指不规范的代码并不表示代码错误)重复出现在代码中.因此,我把常见的这些违规编码总结成一份列表,分享给大家以帮助Java爱好者提高代码的质量和可维护性. 这份列表没有依据任何规则或顺序,所有的这些都是通过代码质量工具包括Che

Java中最常见的十道面试题

第一,谈谈final, finally, finalize的区别. final?修饰符(关键字)如果一个类被声明为final,意味着它不能再派生出新的子类,不能作为父类被继承.因此一个类不能既被声明为 abstract的,又被声明为final的.将变量或方法声明为final,可以保证它们在使用中不被改变.被声明为final的变量必须在声明时给定初值,而在以后的引用中只能读取,不可修改.被声明为final的方法也同样只能使用,不能重载 . finally?再异常处理时提供 finally 块来执行

Java中数组常见的几种排序方法!

数组的定义: int[] arr = new int[5]; int[] arr1 = {1,2,3,4,5}; long[] arr2 = new long[6]; String[] strs = new String[5]; Person[] ps = new Person[5]; 数组的操作: int[] arr = {45, 34, 53, 43}; Arrays.sort(arr); System.out.println(Arrays.toString(arr)); // 二分搜索法(

java中最常见的几种运行时异常,你get了吗?

NullPointerException (空指针异常) ClassCastException (类型强制转换异常) NumberFormatException (数字格式异常) NegativeArraySizeException (数组大小为负数异常) SecurityException (安全异常) BufferOverFlowException (缓冲区溢出异常) IndexOutofBoundsException (下标越界异常) 原文地址:https://www.cnblogs.co