- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想将整数的字符串表示形式转换为实际的整数值。我不知道事先使用哪个基数/基数,因此我不能简单地依赖以基数作为参数的方法/构造函数(如 here 所示)。字符串可能表示无符号 64 位整数和其他大数,因此不可以使用 java.lang.Integer。
是否有更好的方法来完成我尝试使用下面的代码执行的操作? java中是否有可用的构造函数/方法可以将字符串解释为它们自己的整数文字?我知道当指定的基数为 0
( int() ) 时,Python 会执行此操作。
import java.math.BigInteger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class LexicalIntegerCoverter {
private static final Pattern pattern =
Pattern.compile("(\\+|-)?(0(x)?)?([0-9a-fA-F]+)");
private Parts getParts(String lex) { // pun was not intended
Matcher matcher = pattern.matcher(lex);
boolean lookingAt = matcher.lookingAt();
if (lookingAt) {
String sign = matcher.group(1);
int radix;
String prefix = matcher.group(2);
if ("0".equals(prefix)) {
radix = 8;
} else if ("0x".equals(prefix)) {
radix = 16;
} else {
radix = 10;
}
String numbers = matcher.group(4);
return new Parts(sign, radix, numbers);
}
throw new NumberFormatException("Unknown lexical representation");
}
public BigInteger getLexToInt(String lex) {
Parts parts = getParts(lex.trim());
return new BigInteger(parts.getNumber(), parts.getRadix());
}
public static void main(String[] args) {
String hexLex = "0xf";
String hexLexPlus = "+0xf";
String hexLexMinus = "-0xf";
String octLex = "017";
String octLexPlus = "+017";
String octLexMinus = "-017";
String decLex = "15";
String decLexPlus = "+15";
String decLexMinus = "-15";
LexicalIntegerCoverter converter = new LexicalIntegerCoverter();
System.out.println(hexLex + " = " + converter.getLexToInt(hexLex));
System.out.println(hexLexPlus + " = " + converter.getLexToInt(hexLexPlus));
System.out.println(hexLexMinus + " = " + converter.getLexToInt(hexLexMinus));
System.out.println(octLex + " = " + converter.getLexToInt(octLex));
System.out.println(octLexPlus + " = " + converter.getLexToInt(octLexPlus));
System.out.println(octLexMinus + " = " + converter.getLexToInt(octLexMinus));
System.out.println(decLex + " = " + converter.getLexToInt(decLex));
System.out.println(decLexPlus + " = " + converter.getLexToInt(decLexPlus));
System.out.println(decLexMinus + " = " + converter.getLexToInt(decLexMinus));
}
private static class Parts {
private final String sign;
private final int radix;
private final String digits;
public Parts(String sign, int radix, String digits) {
this.sign = sign;
this.radix = radix;
this.digits = digits;
}
public String getSign() {
return sign;
}
public int getRadix() {
return radix;
}
public String getDigits() {
return digits;
}
public String getNumber() {
return (sign == null ? "" : sign) + digits;
}
@Override
public String toString() {
return getNumber() + "[" + radix + "]";
}
}
}
P.S.:关于此有很多类似的问题,答案指向 Integer.parseInt(String, int)
或 BigInteger(String, int)
,但那就是不是我正在寻找的答案。我也更喜欢在不依赖第三方库的情况下执行此操作。我还知道 java 允许在代码中定义整数文字,这也不是我正在寻找的答案(我实际上需要转换包含整数文字的字符串) - 我想做java编译器在遇到这样的值时会执行此操作。
编辑01
我上面说过我不想使用第三方库,但这并不意味着它不是一个选择。
最佳答案
BigInteger bi = new BigInteger(s, 16);
这会将字符串解析为十六进制数字,只需删除 0x (或其他)前缀即可。另请查看标准 javaSE api 的 DecimalFormat 类 http://docs.oracle.com/javase/7/docs/api/java/text/DecimalFormat.html
关于java - 将包含整数文字(十进制、十六进制和八进制表示法)的 java 字符串解释为整数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20282310/
需要帮助将这些给定的数字打印成星号,但我是编程新手;我该怎么做? #include int main(void) { int a[5]={20,1,5,15,12}; int i=0
使用 Delphi XE 2 我试图确定缩放方向以将缩放效果应用于图像(TImage),但没有找到执行此操作的函数,并且图像的 OnGesture 事件中的 EventInfo 属性没有此信息. 我见
我不知道制服在内存中是如何表示的。 制服似乎会占用宝贵的寄存器空间,但它们最终会传入/通过/传出到全局内存中,对吗? 制服不用时情况会发生变化吗?编译器可以将它们优化掉吗?--在这种情况下,我已经将无
我正在尝试在名为“timeclock”的模型上记录“time_in”和“time_out”记录。这是我想做但无法开始工作的事情! 检查最后一个时钟条目,看看它是否同时填充了“time_in”和“tim
我想听听您如何解决这种编程任务!?每种类型(OPER = 1 类型)对应一种特定的信息。 这只是大约 10 个具有相同结构的规范之一。首选创建这些“转换器”(协议(protocol))的通用方法。 最
我正在使用 Rest API(NodeJS、Express)和 PostgreSQL 制作 React-Native 应用。 在我的本地机器上托管时一切正常。当 API 托管在我的机器上并且 Post
我是一名优秀的程序员,十分优秀!