Java StackTraceElement hashCode()方法
java.lang.StackTraceElement.hashCode() 方法返回该堆栈跟踪元素的哈希码值。
1 语法
public int hashCode()
2 参数
无
3 返回值
此方法返回该对象的哈希码值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java StackTraceElement hashCode()方法
*/
import java.lang.*;
public class StackTraceElementDemo {
public static void main(String[] args) {
function1();
}
public static void function1()
{
new StackTraceElementDemo().function2();
}
public void function2()
{
int i;
System.out.println("hash code : ");
// print stack trace
for(i = 1 ; i < 3 ; i++) {
System.out.println(Thread.currentThread().getStackTrace()[i].
hashCode());
}
}
}
输出结果为:
hash code :
2115854044
2115853075
热门文章
优秀文章