找到 9301 篇文章 关于面向对象编程
705 次浏览
Java 中的 valueOf() 方法用于将字符数组转换为字符串。这是我们的字符数组。// 字符数组 char[] c = {'p','q','r','s','t','u','v'};要将其转换为字符串,请使用 valueOf() 方法。String str = String.valueOf(c);示例 在线演示public class Demo { public static void main(String[] args) { // 字符数组 char[] c = {'p','q','r','s','t','u','v'}; // 转换为字符串 String str = String.valueOf(c); System.out.println("字符串: "+str); } }输出字符串: pqrstuv
5K+ 次浏览
Java 中的 valueOf() 方法用于将 short 转换为字符串。假设我们有以下 short 值。short val = 20;将上面的 short 值转换为字符串。String.valueOf(val);示例 在线演示public class Demo { public static void main(String[] args) { short shortVal = 55; // 将 short 转换为 String String str = String.valueOf(shortVal); System.out.println("字符串: "+str); } }输出字符串: 55
233 次浏览
Java 中的 valueOf() 方法用于将 float 转换为字符串。假设我们有以下 float 值。float val = 10.18465F;将上面的 float 值转换为字符串。String.valueOf(val);示例 在线演示public class Demo { public static void main(String[] args) { float val = 98.18465F; // 将 float 转换为 String String str = String.valueOf(val); System.out.println("字符串: "+str); } }输出字符串: 98.18465
797 次浏览
Java 中的关键字是保留字,表示预定义的动作、内部流程等。因此,关键字不能用作变量、函数、对象等的名称。关键字和标识符的主要区别在于,关键字是表示预定义动作的保留字,而标识符是变量、函数、对象等的名称。Java 中的一些关键字如下所示:abstract assert boolean break byte case catch char class const continue default do double else enum extends final finally float for goto if implements import instanceof int interface long native new package private protected public return short static strictfp super switch synchronized this throw throws transient try void volatile while演示关键字的程序如下所示:示例 在线演示public class Example { public static void main(String[] args) { int i = 5; char c = 'A'; System.out.println("i = " + i); System.out.println("c = " + ... 阅读更多
738 次浏览
双端队列是一个双端队列,数据元素可以从任一端添加或删除。Java 中的双端队列使用 java.util.Deque 接口实现,它是 java.util.Queue 接口的子类型。演示双端队列的一些方法的程序如下所示:示例 在线演示import java.util.*; public class Example { public static void main(String[] args) { Deque d = new LinkedList(); d.add("5"); d.addFirst("1"); d.addLast("9"); d.push("7"); d.offer("8"); d.offerFirst("6"); d.offerLast("2"); ... 阅读更多
736 次浏览
Java 提供了 java.util 包中可用的 Date 类,此类封装了当前日期和时间。时间函数可以从 java.util.Date 类访问。这表示具有毫秒精度的某个时间实例。Java 中的一个时间函数是 getTime() 函数。它返回自 1970 年 1 月 1 日 00:00:00 GMT 以来经过的毫秒数。演示此函数的程序如下所示:示例 在线演示import java.util.*; public class Example { public static void main(String[] args) { Date d = new Date(95, 7, 15); long num = ... 阅读更多
5K+ 次浏览
矩阵乘法通过将 2 个矩阵相乘得到一个新矩阵。但这只有在第一个矩阵的列数等于第二个矩阵的行数时才可能。使用方阵的矩阵乘法的示例如下所示。示例 在线演示public class Example { public static void main(String args[]) { int n = 3; int[][] a = { {5, 2, 3}, {2, 6, 3}, {6, 9, 1} }; int[][] b = { {2, 7, 5}, {1, 4, 3}, {1, 2, 1} }; int[][] ... 阅读更多
2K+ 次浏览
单词按字典序或词典顺序排序。这意味着单词根据其组成字母按字母顺序排列。示例如下所示。单词的原始顺序是 Tom Anne Sally John 单词的字典顺序是 Anne John Sally Tom演示此操作的程序如下所示。示例 在线演示public class Example { public static void main(String[] args) { String[] words = { "Peach", "Orange", "Mango", "Cherry", "Apple" }; int n = 5; System.out.println("单词的原始顺序 ... 阅读更多
8K+ 次浏览
可以合并两个已排序的数组,以便获得单个结果排序数组。示例如下所示。数组 1 = 1 3 7 9 10 数组 2 = 2 5 8 合并数组 = 1 2 3 5 7 8 9 10演示此操作的程序如下所示。示例 在线演示public class Example { public static void main (String[] args) { int[] arr1 = {11, 34, 66, 75}; int n1 = arr1.length; int[] arr2 = {1, 5, 19, 50, 89, 100}; int ... 阅读更多
5K+ 次浏览
可以反转字符串中单词的顺序,并以反向顺序显示字符串。示例如下所示。字符串 = 我喜欢芒果 反转字符串 = 芒果 喜欢 我演示此操作的程序如下所示。示例 在线演示import java.util.regex.Pattern; public class Example { public static void main(String[] args) { String str = "the sky is blue"; Pattern p = Pattern.compile("\s"); System.out.println("原始字符串是:"+ str); String[] temp = p.split(str); String rev = ... 阅读更多