java.text.ParsePosition类的hashCode()方法用于检索当前解析位置对象的哈希码。
用法:
public int hashCode()
参数:此方法不接受任何参数作为参数。
返回值:此方法返回当前解析位置对象的哈希码。
下面是说明hashCode()方法的示例:
范例1:
// Java program to demonstrate
// hashCode() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// new ParsePosition Object
ParsePosition pos
= new ParsePosition(500);
// getting hashCode for
// current ParsePosition Object
// using getIndex() method
int i = pos.hashCode();
// display result
System.out.println(
"hashCode:"
+ Integer.toString(i));
}
catch (ClassCastException e) {
System.out.println(e);
}
}
}
输出:
hashCode:-65036
范例2:
// Java program to demonstrate
// hashCode() method
import java.text.*;
import java.util.*;
import java.io.*;
public class GFG {
public static void main(String[] argv)
{
try {
// Creating and initializing
// new ParsePosition Object
ParsePosition pos
= new ParsePosition(-1);
// getting hashCode for
// current ParsePosition Object
// using getIndex() method
int i = pos.hashCode();
// display result
System.out.println(
"hashCode:"
+ Integer.toString(i));
}
catch (ClassCastException e) {
System.out.println(e);
}
}
}
输出:
hashCode:-1
参考: https://docs.oracle.com/javase/9/docs/api/java/text/ParsePosition.html#hashCode-
相关用法
- Java ParsePosition setIndex()用法及代码示例
- Java ParsePosition getErrorIndex()用法及代码示例
- Java ParsePosition setErrorIndex()用法及代码示例
- Java ParsePosition getIndex()用法及代码示例
- Java ParsePosition equals()用法及代码示例
- Java ParsePosition toString()用法及代码示例
- Java DateFormat parse(string , ParsePosition)用法及代码示例
- Java TreeSet hashCode()用法及代码示例
- Java DecimalStyle hashCode()用法及代码示例
- Java FieldPosition hashCode()用法及代码示例
- Java Collator hashCode()用法及代码示例
- Java Vector hashCode()用法及代码示例
- Java Map hashCode()用法及代码示例
- Java MessageFormat hashCode()用法及代码示例
- Java RuleBasedCollator hashCode()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 ParsePosition hashCode() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。