Java ObjectStreamClass getSerialVersionUID()方法(带示例)

ObjectStreamClass类getSerialVersionUID()方法 (ObjectStreamClass Class getSerialVersionUID() method)

  • getSerialVersionUID() method is available in java.io package.

    getSerialVersionUID()方法在java.io包中可用。

  • getSerialVersionUID() method is used to get the serial version UID for this ObjectStreamClass class and the uid defines a set of classes with the same name that has evolved from a common root class and satisfies to be serialized and deserialized during a common format.

    getSerialVersionUID()方法用于获取此ObjectStreamClass类的串行版本UID,并且uid定义了一组具有相同名称的类,该类的名称从公共根类演化而来,并满足在通用格式下进行序列化和反序列化的要求。

  • getSerialVersionUID() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    getSerialVersionUID()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • getSerialVersionUID() method does not throw an exception at the time of returning serial version UID.

    返回串行版本UID时, getSerialVersionUID()方法不会引发异常。

Syntax:

句法:

    public long getSerialVersion();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is long, it returns the serial version UID of the class defined by this descriptor.

方法的返回类型为long ,它返回此描述符定义的类的序列号UID。

Example:

例:

// Java program to demonstrate the example 
// of long getSerialVersion() method of 
// ObjectStreamClass
import java.io.*;
import java.util.*;
public class GetSerialVersionUID {
public static void main(String[] args) {
// Instantiates ObjectStreamClass for 
// and Calendar
ObjectStreamClass o_stm = ObjectStreamClass.lookup(Calendar.class);
// By using getSerialVersionUID() method is to return
// the serial version uid of this class
long svuid = o_stm.getSerialVersionUID();
// Display svuid
System.out.println("o_stm.getSerialVersionUID(): " + svuid);
}
}

Output

输出量

o_stm.getSerialVersionUID(): -1807547505821590642

翻译自: https://www.includehelp.com/java/objectstreamclass-getserialversionuid-method-with-example.aspx

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545890.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

知方可补不足~数据库名称和数据库别名不同了怎么办

回到目录 当你的数据库安装成功后,你修改了计算机名称,这时,你的sqlserver名称与别名可能就不相同了,当这两个名称不相同时,你再使用sql的发布与订阅功能时,将会被提示出错,“请使用服务名称&am…

调研了100+开源博客,发现这5个最好用!

最近想倒腾一下博客,看了很多现成的比较成熟的开源博客系统,自己也简单从下面几个维度总结对比了一下:star 数量技术选型社区生态当然啦!好东西不能独享,下面简单分享一下我所做的笔记(文末有提供所有项目的…

批处理编程详解

批处理编程详解小引:最近好多猜测弱口令的病毒在网上流行,比如前段时间闹得很厉害的Worm.Dvldr 蠕虫就是一个典型。这些病毒有个共同点就是利用批处理来进行ipc$连接,从而来猜测管理员的口令达到控制服务器的目的。病毒由几个文件和几个复杂的…

Java Object Class boolean equals(Object o)方法与示例

对象类布尔值等于(对象o) (Object Class boolean equals(Object o)) This method is available in package java.lang.Object.equals(Object o). 软件包java.lang.Object.equals(Object o)中提供了此方法。 This method is used to check the object with the specified object…

3种时间格式化的方法,SpringBoot篇!

时间格式化在项目中使用频率是非常高的,当我们的 API 接口返回结果,需要对其中某一个 date 字段属性进行特殊的格式化处理,通常会用到 SimpleDateFormat 工具处理。SimpleDateFormat dateFormat new SimpleDateFormat("yyyy-MM-dd"…

linux系统怎么改为中文版(转)

linux系统安装好后怎么改为中文版呢?今天就跟大家介绍下linux系统改为中文版的方法,希望能帮助到大家! 以下是linux系统改为中文版的四种方法,一起来看看: 方法1:写入环境变量 echo "export LANG"…

写一个头文件

#ifndef _(文件名)_H #define _(文件名)_H #include<标准库头文件> ……&#xff08;所有函数声明&#xff09; #endif 头文件是对函数的声明&#xff0c;在对其引用时用“……”和<……>两种&#xff0c;如果这个头文件是自己写的就用“”&#xff0c;例如#i…

Command10,Access数据库

我的按钮名为Command10&#xff0c;Access文档新建在当前目录下&#xff0c;代码如下Private Sub Command10_Click()Dim cat As ADOX.CatalogSet cat New ADOX.Catalog在当前目录下建立名为newdata的Access数据库cat.Create ("ProviderMicrosoft.Jet.OLEDB.4.0;Data Sour…

b树范围查找_使用段树查找最大查询范围

b树范围查找The following question/problem is asked on http://www.spoj.com/problems/GSS1/ 在http://www.spoj.com/problems/GSS1/上询问以下问题/问题 Problem: 问题&#xff1a; A sequence is given: A[1], A[2], ..., A[N] .( |A[i]| ≤ 15007 , 1 ≤ N ≤ 50000 ). …

两难!先更新数据库再删缓存?还是先删缓存再更新数据库?

前言当我们在做数据库与缓存数据同步时&#xff0c;究竟更新缓存&#xff0c;还是删除缓存&#xff0c;究竟是先操作数据库&#xff0c;还是先操作缓存&#xff1f;本文带大家深度分析数据库与缓存的双写问题&#xff0c;并且给出了所有方案的实现代码方便大家参考。本篇文章主…

c++ list sort

1. bool operator < (S & b) {return ID < b.ID;} struct S {std::string firstname;std::string secondname;int ID;bool operator < (S & b) {return ID < b.ID;}// 重新定义小于&#xff0c;因为默认的sort函数调用的操作符是<&#xff0c;所以我…

负数在计算机中如何表示?

取一个负数如-5&#xff0c;其原码就是其绝对值5的原码&#xff0c;但最高位为1&#xff0c;&#xff08;负数最高位为1&#xff0c;正数最高位为0&#xff09;&#xff0c;其反码就是对原码取反&#xff08;最高位不参与取反&#xff09;&#xff0c;补码就是对反码1&#xff…

String中删除空格的7种方法!

字符串&#xff0c;是Java中最常用的一个数据类型了。我们在日常开发时候会经常使用字符串做很多的操作。比如字符串的拼接、截断、替换等。本文我们介绍一个比较常见又容易被忽略的一个操作&#xff0c;那就是移除字符串中的空格。其实&#xff0c;在Java中从字符串中删除空格…

pictureBox1.Image的获得图片路径的三种方法

1.绝对路径: this.pictureBox2.ImageImage.FromFile("D://1.jpg"); 2.相对路径: Application.StartupPath; 可以得到程序根目录 this.pictureBox2.ImageImage.FromFile(Application.StartupPath "//1.gif"); 3.获得网络图片的路径 this.pictureBox2.Imag…

借助datetime和pyttsx3在Python中创建闹钟

Modules used: 使用的模块&#xff1a; To create this script, we will use 3 modules: 要创建此脚本&#xff0c;我们将使用3个模块&#xff1a; datetime 约会时间 time 时间 pyttsx3 pyttsx3 datetime module: datetime is an inbuilt python module which will help us …

ie6 javascript js 缺少标识符总结(转载)

转载http://blog.csdn.net/qingyundys/article/details/6218280 ie6 javascript js 缺少标识符总结1. ie6下&#xff0c;javascript代码中&#xff0c;不能出现保留字符。解决办法就是避免直接使用JS的保留字符。2. IE和Firefox不兼容的地方.属性之间是要用","分隔的…

Unsigned 陷阱

unsigned是整形的一种类型&#xff0c;表示无符号&#xff0c;一般用于unsigned int和unsigned char&#xff0c;如果没有理解unsigned的意义将会在做题中掉入陷阱&#xff0c;下面通过介绍几个例子来说明&#xff1a; 1、 int main() {unsigned int i;for (i 10;i > 0;…

URL 去重的 6 种方案!(附详细代码)

作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;URL 去重在我们日常工作中和面试中很常遇到&#xff0c;比如这些&#xff1a;可以看出&#xff0c;包括阿里&#xff0c;网易…

深入了解INF

大家都知道&#xff0c;在“我的电脑”里有数也数不清的INF文件&#xff0c;但是却很少有人知道&#xff0c;INF文件是干什么用的。充其量&#xff0c;也仅仅停留在INF文件能够解开锁定的注册表这一感性的认识上&#xff0c;那么到底什么是INF文件&#xff0c;INF文件又能干些什…

Java字符串indexOf(int ch,int fromIndex)方法,带示例

字符串indexOf(int ch&#xff0c;int fromIndex)方法 (String indexOf(int ch, int fromIndex) Method) indexOf(int ch, int fromIndex) is a String method in Java and it is used to get the index of a specified character in the string from given fromIndex. That me…