英文: How is Java String constructor implemented? 问题 我在查阅 Java 字符串源代码时,发现了一个构造函数,对其中的一些内容存在疑问: public ...
How to optimize the following code in java where I've to get bitwise OR of two very long binary strings?
英文: How to optimize the following code in java where I've to get bitwise OR of two very long bin...
我必须计算字符串中最后一个单词的长度。遇到错误。
英文: I have to calculate LENGTH OF LAST WORD in a string.Getting error 问题 我遇到了“String Index Out Of Ra...
创建新字符串作为文字/新对象时的内存分配
英文: Memory allocation when creating new String as literal/new Object 问题 代码: String s1 = "Hello...
将日期字符串转换为整数数组。
英文: convert Date string to array of integers 问题 我有一个格式为:"YYYY-MM-DD"的字符串,我想将它转换为整数数组。 这是我的...
I have to check pallindrome string.I am getting a wrong answer when I enter String having numeric values.For ex."0P"
英文: I have to check pallindrome string.I am getting a wrong answer when I enter String having numeri...
打印数组中的所有字符串
英文: Print all strings of array 问题 非常新于Java和编程一般。 正在尝试弄清楚如何打印我的数组的内容 public class GameClass { public ...
字符串递归方法在Java中
英文: String Recursion Method in Java 问题 我正在尝试编写一个递归程序:计算所有长度为n的字符串,这些字符串可以由string中提供的所有字符组成,但不允许出现在su...
如何将一个长整型转换为其32位二进制表示?
英文: How can I convert a long to its binary 32 bit representation? 问题 以下是翻译好的内容: 我正在进行以下的编程练习:int32 t...
Getting array out of ArrayOutOfBound exception. I was writing code to get first letters of all words in a string
英文: Getting array out of ArrayOutOfBound exception. I was writing code to get first letters of all w...
134