dumpstack_Java Thread类的静态void dumpStack()方法(带示例)

dumpstack

线程类静态void dumpStack() (Thread Class static void dumpStack())

  • This method is available in package java.lang.Thread.dumpStack().

    软件包java.lang.Thread.dumpStack()中提供了此方法。

  • This method is used to print or display stack tracing of the current thread to System.err (Standard error stream).

    此方法用于打印或显示当前线程到System.err (标准错误流)的堆栈跟踪。

  • The purpose of this method is basically for debugging (i.e. If we call multiple methods so it is difficult to find an error so with the help of this method we can find an error in stack trace or stack hierarchy).

    该方法的目的基本上是用于调试(即,如果我们调用多个方法,那么很难发现错误,因此借助该方法,我们可以在堆栈跟踪或堆栈层次结构中找到错误)。

  • This method is static so this method is accessible with classname too like Thread.dumpStack().

    此方法是静态的,因此也可以使用类名访问此方法,例如Thread.dumpStack() 。

  • The return type of this method is void it does not return anything.

    此方法的返回类型为void,它不返回任何内容。

  • This method does not raise any exception.

    此方法不会引发任何异常。

Syntax:

句法:

    static void dumpStack(){
}

Parameter(s):

参数:

We don't pass any object as a parameter in the method of the File.

我们不会在File方法中将任何对象作为参数传递。

Return value:

返回值:

The return type of this method is void, it does not return anything.

此方法的返回类型为void ,它不返回任何内容。

Java程序演示dumpStack()方法的示例 (Java program to demonstrate example of dumpStack() method)

/*  We will use Thread class methods so we are importing 
the package but it is not mandate because 
it is imported by default
*/
import java.lang.Thread;
public class PrintStackTraceOfCurrentThread {
public static void main(String[] args) {
// By using currentThread() of Thread class will return a 
// reference of currently executing thread.
Thread th = Thread.currentThread();
// By using setName() method we are setting the name 
// of current executing thread
th.setName("Main Thread");
// By using setPriority() method we are setting the 
// priority of current executing thread
th.setPriority(2);
//Display Current Executing Thread
System.out.println("Currently Executing Thread is :" + th);
int active_thread = Thread.activeCount();
// Display the number of active threads in current threads thread group
System.out.println("The Current active threads is : " + active_thread);
// Display stack trace of current thread 
// to the System.err (Standard error stream)
Thread.dumpStack();
}
}

Output

输出量

E:\Programs>javac PrintStackTraceOfCurrentThread.java
E:\Programs>java PrintStackTraceOfCurrentThread
Currently Executing Thread is :Thread[Main Thread,2,main]
The Current active threads is : 1
java.lang.Exception: Stack trace
at java.lang.Thread.dumpStack(Thread.java:1365)
at PrintStackTraceOfCurrentThread.main(PrintStackTraceOfCurrentThread.java:24)

翻译自: https://www.includehelp.com/java/thread-class-static-void-dumpstack-method-with-example.aspx

dumpstack

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

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

相关文章

netty websocket 简单消息推送demo

2019独角兽企业重金招聘Python工程师标准>>> 今天心情很不好!!! 原因保密。 这篇是基于"netty与websocket通信demo"。 错误想法:大量客户请求,共用一个worker,来实现推送。 正确作法&…

给 JDK 官方提了一个 Bug,结果...

图 by:石头北京-望京关于作者:程序猿石头(ID: tangleithu),现任阿里巴巴技术专家,清华学渣,前大疆后端 Leader。背景分享一下之前踩的一个坑,背景是这样的:我们的项目依赖于一个外部服务&#x…

Of Study - Francis Bacon

Of StudyFrancis Bacon 弗朗西斯培根Studies serve for delight, for ornament, and for ability. Their chief use for delight, is in privateness and retiring; for ornament, is in discourse;and for ability, is in the judgment and disposition of business.For expe…

解决exe文件在别人电脑上运行缺失文件情况

这里就以vs2013为例:编译后生成的exe文件拷贝到别人电脑上运行是会弹出一个窗口说缺失MSVCR120.dll和MSVCR120D.dll这两个文件。(其他vs版本的编译器在所提示的缺失文件按下述方法也可解决)下面就介绍一种方法解决。 1、在VS2013软件中找到MS…

Java日历的getMinimalDaysInFirstWeek()方法和示例

Calendar类的getMinimalDaysInFirstWeek()方法 (Calendar Class getMinimalDaysInFirstWeek() method) getMinimalDaysInFirstWeek() method is available in java.util package. getMinimalDaysInFirstWeek()方法在java.util包中可用。 getMinimalDaysInFirstWeek() method is…

HighCharts: 设置时间图x轴的宽度

这个x轴宽度的设置整了好久,被老板催的要死highcharts的api文档很难找,找了半天也没找到,网上资料少,说的试了下,也没有,我用的图里api文档里没有介绍,这个属性不知道的话,根本不好找…

32张图带你彻底搞懂事务和锁!

作者 | 悟空聊架构来源 | 悟空聊架构(ID:PassJava666)转载请联系授权(微信ID:PassJava)本篇主要内容如下:本篇主要内容一、事务1.1 什么是事务为单个工作单元而执行的一系列操作。如查询、修改数…

C++总结篇(1)命名空间及引用

1、命名空间 1.1概念: 用我自己的话说就是规定一个空间,在该空间内定义的变量和函数只限于在该空间内使用,在该空间外无法直接调用。需要调用须加域名,这也就使得避免了同名变量或者函数引起的冲突。 1.2命名空间定义: 定义命名空…

分布式映射与集中式映射_K映射上的表达式映射和组包围

分布式映射与集中式映射In the previous article (Karnaugh Map 2, 3 and 4- variable) we have already discussed the designing of K-Map and various forms in which they are represented based on either they are being mapped for minterm or maxterm. 在上一篇文章( 卡…

phrases

短语 To get the better/best of you 打败,胜过To get the most/utmost out of 有效地使用或利用Overall trend Compactly- built a man of medium build Heavily-built Level off, remain stable, stay constantPlateau fluctuateThe outlay on cars are …

Datagridview拖放数据到TreeView

通过Datagridview控件可以显示数据库记录sender:表示支持.net framework类层次结构中所有类的基类对象.e:表示为mousedown 事件提供数据.private void treeview1_mouseenter(object sender,eventargs e)拖放可以选定单行或者多行.1.选定一条在控件中默认状态下行标题选定.按ctr…

JDK 竟然是这样实现栈的?

作者 | 王磊来源 | Java中文社群(ID:javacn666)转载请联系授权(微信ID:GG_Stone)前面的文章《动图演示:手撸堆栈的两种实现方法!》我们用数组和链表来实现了自定义的栈结构&#xff…

layui如何自定义layedit富文本编辑器工具栏

layui自带了layedit富文本编辑器&#xff0c;我们在使用过程中有时候不需要全部工具&#xff0c;或者想自定义工具栏&#xff0c;该如何弄呢&#xff1f;以下方法教大家自定义自己的layedit编辑器。 步骤1&#xff1a;定义存放编辑器的盒子 <div class"layui-form-it…

C++总结篇(2)类和对象

1、类 1.1类的定义: C是一门面向对象的语言&#xff0c;便就引入了类的概念&#xff0c;类在一定程度上与C语言中的结构体很相似。Class为定义类的关键字&#xff0c;如下示例&#xff1a; class student {char name[10];int age;int print(); };类不仅可以用class来定义&a…

小程序 || 语句_C ++条件语句| 查找输出程序| 套装1

小程序 || 语句Program 1: 程序1&#xff1a; #include <iostream>using namespace std;int main(){if (NULL) {cout << "Hello World";}else {cout << "Hii World";}return 0;}Output: 输出&#xff1a; Hii WorldExplanation: 说明&…

关于微信,运营商们就这点志向?

2019独角兽企业重金招聘Python工程师标准>>> 近期关于运营商威逼微信收费之事闹得沸沸扬扬&#xff0c;在虎嗅上看到有不少人发表了自己的看法也不乏给运营商或微信出点子的人&#xff0c;但我觉得都不是很妥&#xff0c;还是谈谈我的看法吧。 陈旧的思路&#xff…

阿里巴巴开源的Excel操作神器!

前提导出数据到Excel是非常常见的后端需求之一&#xff0c;今天来推荐一款阿里出品的Excel操作神器&#xff1a;EasyExcel。EasyExcel从其依赖树来看是对apache-poi的封装&#xff0c;笔者从开始接触Excel处理就选用了EasyExcel&#xff0c;避免了广泛流传的apache-poi导致的内…

再谈指针

C语言为什么高效&#xff1f;因为C语言有指针。指针是C语言的精华&#xff0c;同时也是C语言的难点&#xff0c;很多人一学到指针就表示头大&#xff0c;指针的指向往往把人搞得晕头转向&#xff0c;甚至有的人为了避免使用指针居然不惜多写几十行代码&#xff0c;无疑增加了工…

vc给exe更改图标

第一步&#xff1a;将制作好的ioc格式图标&#xff0c;拷贝到自己工程所在的res文件夹中第二步&#xff1a;在vc开发环境中&#xff0c;insert-->resourse--〉单击icon然后选择右边的import找到刚才添加到res中的图标文件第三步&#xff1a;将m_hIcon AfxGetApp()->Load…

人工智能ai知识_人工智能中基于知识的代理层

人工智能ai知识Every agent that has a knowledge base and an inference system is known as a knowledge-based agent. The knowledge base contains all the information the agent has. This information can either be the data that is embedded into the agent in prior…