找到 4330 篇文章 关于 Java 8

Java 中的关键字

Samual Sam
更新于 2020-06-26 07:04:17

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 = " + ... 阅读更多

Java 中的双端队列

Samual Sam
更新于 2020-06-26 06:18:01

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"); ... 阅读更多

Java 中的时间函数

karthikeya Boyini
更新于 2020-06-26 06:19:02

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 = ... 阅读更多

使用 Java 进行两个矩阵的乘法

Samual Sam
更新于 2020-06-26 06:22:34

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[][] ... 阅读更多

按字典序对 Java 中的单词进行排序

karthikeya Boyini
更新于 2020-06-25 14:03:52

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("The original order of the words ... 阅读更多

在 Java 中合并两个已排序的数组

Samual Sam
更新于 2020-06-25 14:09:13

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 ... 阅读更多

反转 Java 中给定字符串中的单词

karthikeya Boyini
更新于 2020-06-25 14:16:25

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("The original string is: " + str);       String[] temp = p.split(str);       String rev = ... 阅读更多

计算体重指数 (BMI) 的 Java 程序

Samual Sam
更新于 2024-05-31 13:04:55

26K+ 次浏览

体重指数是体重(以公斤为单位)除以身高平方(以米为单位)。表示为 kg/m^2。以下是一个计算体重指数 (BMI) 的 Java 程序。示例import java.util.Scanner; public class Example {    public static void main(String args[]) {       Scanner sc = new Scanner(System.in);       System.out.print("输入体重(公斤):");       double weight = sc.nextDouble();       System.out.print("输入身高(米):");       double height = sc.nextDouble();       double BMI = weight / (height * height);     ... 阅读更多

检查给定字符串中是否存在子字符串的 Java 程序

Shriansh Kumar
更新于 2024-09-25 18:44:28

1K+ 次浏览

假设您有两个字符串,您的任务是编写一个 Java 程序来检查第二个字符串是否是第一个字符串的子字符串。Java 中的字符串是字符的不可变序列,子字符串是其一小部分。示例场景:-输入 1:str = "The sunset is beautiful";输入 2:sub_str = "sunset";输出:res = found!!使用迭代在这种方法中,思路是使用嵌套 for 循环和 if 块。外部 for 循环将遍历主字符串的字符。对于每个起始位置 i,... 阅读更多

检查字符是否为 ASCII 7 位可打印字符的 Java 程序

Samual Sam
更新于 2020-06-25 13:33:17

253 次浏览

要检查输入的值是否为 ASCII 7 位可打印字符,请检查字符的 ASCII 值是否大于等于 32 且小于 127。这些是控制字符。这里,我们有一个字符。char one = '^';现在,我们使用 if-else 语句检查了可打印字符的条件。if (c >= 32 && c < 127) {    System.out.println("给定值为可打印!"); } else {    System.out.println("给定值不可打印!"); }示例 在线演示public class Demo {    public static void main(String []args) {       char c = '^';       System.out.println("给定值 = "+c);     ... 阅读更多

广告