threadgroup_Java ThreadGroup toString()方法与示例

threadgroup

ThreadGroup类的toString()方法 (ThreadGroup Class toString() method)

  • toString() method is available in java.lang package.

    toString()方法在java.lang包中可用。

  • toString() method is used to returns string denotation of this thread group (i.e. this method returns how to represent a string of this ThreadGroup).

    toString()方法用于返回该线程组的字符串符号(即,该方法返回如何表示此ThreadGroup的字符串)。

  • toString() 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.

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

  • toString() method may throw an exception at the time of string denotation of this ThreadGroup.

    在此ThreadGroup的字符串表示形式时, toString()方法可能会引发异常。

    SecurityException – This exception may throw when the current thread is not permitted to update this Thread group.

    SecurityException-当不允许当前线程更新此Thread组时,可能引发此异常。

Syntax:

句法:

    public String toString();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is String – it denotes string of this thread group.

该方法的返回类型为String –表示该线程组的字符串。

Example:

例:

// Java program to demonstrate the example 
// of String toString() method of ThreadGroup 
public class toString {
public static void main(String[] args) {
ThreadGroup th_grp1 = new ThreadGroup("th_grp - 1");
ThreadGroup th_grp2 = new ThreadGroup("th_grp - 2");
// By using getName() method is to display
// thread group name
System.out.println("th_grp1.getName(): " + th_grp1.getName());
System.out.println("th_grp2.getName(): " + th_grp2.getName());
// By using toString() method is to string
// representation of thread group 
System.out.println("th_grp1.toString(): " + th_grp1.toString());
System.out.println("th_grp2.toString(): " + th_grp2.toString());
}
}

Output

输出量

th_grp1.getName(): th_grp - 1
th_grp2.getName(): th_grp - 2
th_grp1.toString(): java.lang.ThreadGroup[name=th_grp - 1,maxpri=10]
th_grp2.toString(): java.lang.ThreadGroup[name=th_grp - 2,maxpri=10]

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

threadgroup

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

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

相关文章

240多个jQuery插件

文件上传(File upload)Ajax File Upload.jQUploader.Multiple File Upload plugin. jQuery File Style.Styling an input type file.Progress Bar Plugin.表单验证(Form Validation)jQuery Validation.Auto Help.Simple jQuery form validation.jQuery XAV - form validations…

解压缩命令

.Tar.gz 解压:Tar zxvf FileName.Tar.gz 压缩:Tar zcvf FileName.Tar.gz DirName 大致总结了一下Linux下各种格式的压缩包的压缩、解压方法。但是部分方法我没有用到,也就不全,希望大家帮我补充,我将随时修改完善&…

Anaconda下安装OpenCV和Tensorflow(最简洁高效的方法)

安装Tensorflow 1,打开Anaconda Navigator 2,手动创建tensorflow环境,这个和你的python版本号一致哈(方法一第一步之后,输入python即可查看当前的版本) 3,手动搜索并下载添加 4,…

Java System类console()方法及示例

系统类console()方法 (System class console() method) console() method is available in java.lang package. console()方法在java.lang包中可用。 console() method is used to return the console object which is uniquely associated with the current JVM(Java Virtual …

使用FD_CLOEXEC实现close-on-exec,关闭子进程无用文件描述符

我们经常会碰到需要fork子进程的情况,而且子进程很可能会继续exec新的程序。这就不得不提到子进程中无用文件描述符的问题! fork函数的使用本不是这里讨论的话题,但必须提一下的是:子进程以写时复制(COW,C…

mysql_result 对应mysqli哪个_php – 如何在mysqli中转换mysql_result?

这个代码以前是在mysql中,现在因为它已被弃用,我决定在mysqli中转换我的代码,但是我在我的页面中有这个问题有分页,在它使用mysql之前没有错误,但现在我得到了这一行出错:Warning: mysqli_fetch_assoc() expects exactly 1 parameter, 2 given错误是显而易见的,我知…

Anaconda中下载速度贼慢?

清华镜像 大致步骤如下: 1,windsR输入cmd,打开命令终端页面 输入conda config --set show_channel_urls yes 2,在相应的C盘目录下会生成.condarc文件 3,用记事本或者notepad打开进行替换 channels:- defaults show_c…

Delphi面向对象学习随笔八:物理封装

作者:巴哈姆特http://www.cnpack.org(转载请注明出去并保持完整)前面说过的封装其实是逻辑意义上的封装。逻辑封装是对某一特定逻辑功能模块的封装,这个特定逻辑功能块可以是一个类,当然也可以是一个包,他们…

java 方法 示例_Java扫描器具有示例的NextNextShort()方法

java 方法 示例扫描器类的hasNextShort()方法 (Scanner Class hasNextShort() method) Syntax: 句法: public boolean hasNextShort();public boolean hasNextShort(int rad);hasNextShort() method is available in java.util package. hasNextShort()方法在java.…

mysql创建表时出现1071_mysql 出现1071错误怎么办

mysql 出现1071错误的解决办法:该问题是由键值字段长度过长导致。mysql支持数据库表单一键值的最大长度不能超过767字节,超出这个长度即报错(见标题名称)。一般情况下,不会有键值字段的长度会超出该长度。但是需要注意的是,随着全…

srs rtmp从监听到接收到新连接的过程分析

:分析srs从启动开始的main入口开始。分析rtmp监听端口,然后到接收到新rtmp连接的过程分析。 目录一、流程图二、代码分析1、srs_main_server.cpp:main()2、srs_main_server.cpp:do_main()3、srs_main_server.cpp:run()4、srs_main_server.cpp:run_master…

OpenCV笔记(基于Python)

学习时,将每块注释分别去掉即为一个模块知识点 图像数字化 import numpy as np """ #二维的ndarry #两行四列全是0的uchar类型的二维数组 z np.zeros((2,4),np.uint8) print(type(z)) print(z) print("\n")#两行四列全是1的整型矩阵 o …

POJ 1222 1681 1830 3185 开关灯问题 (高斯消元 异或方程组)

POJ 1222 EXTENDED LIGHTS OUT 基本的开关灯问题.还保证唯一解. 我们把每一个灯泡当成一个状态xi,总共有30个,而且每个灯与其他灯的关系也很明显。所以我们就可以列30方程30个变元的方程组: xi 1 * xi 1 * x(i-1) 1 * x(i1) 1 * x(i-6) …

我看周马,以及3Q大战背后的社会问题

如今闹得不可开交的3Q大战已经成了一道独特的风景线,让我们在茶余饭后又增添了不少谈资。这两个中国最大的客户端软件提供商各有拥趸无数,双方铆足了劲相互吐口水、扔砖头,现在貌似到了动刀子了。周、马在媒体上也都将自己标榜为“美貌与智慧…

Java PushbackReader ready()方法与示例

PushbackReader类ready()方法 (PushbackReader Class ready() method) ready() method is available in java.io package. ready()方法在java.io包中可用。 ready() method is used to check whether this stream is ready to be read or not. ready()方法用于检查此流是否已准…

mysql数据库知识点梳理_MySQL数据库知识点整理 (持续更新中)

一、修改用户密码格式(在命令行下输入):mysqladmin -u 用户名 -p旧密码 password 新密码1. 给root添加密码ab12: mysqladmin -uroot -password ab122. 将root的密码修改为djg345: mysqladmin -uroot -pab12 password djg345二、添加新用户格式:grant…

加载一张照片,可选择是否另存为

加载一张照片,按下S键保存,ESC退出 加载一个灰度图(E:\Python-workspace\yanyu.png),显示图片按下’s’键保存(beyond.png)(保存后的路径和该程序所在路径一致)后退出,或者按下 ESC 键退出不保存 import cv2img cv2.imread(E:\…

RTMP代理的协议规范(RtmpProxy)

RtmpProxy 关于RTMP代理的协议规范。RTMP是字节协议,第一个包是c0,1个字节,一般是03表示是明文的RTMP。所以如果需要做RTMP代理,如果直接转发RTMP客户端的消息,是没法传递额外的信息的,譬如HTTP代理在Head…

经典地址收集

http://kuler.adobe.com/ 配色网站转载于:https://www.cnblogs.com/Wolves/archive/2010/11/08/1871914.html

Java Math类toDegrees()方法与示例

数学类toDegrees()方法 (Math class toDegrees() method) toDegrees() method is available in java.lang package. toDegrees()方法在java.lang包中可用。 toDegrees() method is used to convert an angle from radians to degrees. toDegrees()方法用于将角度从弧度转换为度…