package com.arithmetic; public class A { public static void main(String[] args) { // TODO Auto-generated method stub try { System.out.println(atoi("5234")); Integer.parseInt("42"); System.out.println(Integer.MIN_VALUE); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); } System.out.println(itoa(23214)); } //将字符串转换成整型数 public static int atoi(String str) throws Exception { boolean negative = false; int value = 0; if (str == null || "".equals(str)) { throw new Exception("null String or the string has no character"); } for (int i = 0; i < str.length(); i++) { if (i == 0 && (str.charAt(0) == '-' || str.charAt(0) == '+')) { if (str.charAt(0) == '-') { negative = true; } } else { if (str.charAt(i) >= '0' && str.charAt(i) <= '9') { value = value * 10 + (str.charAt(i) - '0'); if (value > Integer.MAX_VALUE) { throw new Exception("Out of integer range"); } else if (value < Integer.MIN_VALUE) { throw new Exception("Out of integer range"); } } else { throw new NumberFormatException("not an integer"); } } } return negative ? value * -1 : value; } //将字符串转换成整型数,Java 源代码 public static int parseInt(String s, int radix) throws NumberFormatException { /* * WARNING: This method may be invoked early during VM initialization * before IntegerCache is initialized. Care must be taken to not use * the valueOf method. */ if (s == null) { throw new NumberFormatException("null"); } if (radix < Character.MIN_RADIX) { throw new NumberFormatException("radix " + radix + " less than Character.MIN_RADIX"); } if (radix > Character.MAX_RADIX) { throw new NumberFormatException("radix " + radix + " greater than Character.MAX_RADIX"); } int result = 0; boolean negative = false; int i = 0, len = s.length(); int limit = -Integer.MAX_VALUE; int multmin; int digit; if (len > 0) { char firstChar = s.charAt(0); if (firstChar < '0') { // Possible leading "+" or "-" if (firstChar == '-') { negative = true; limit = Integer.MIN_VALUE; } else if (firstChar != '+') new NumberFormatException("For input string: \"" + s + "\""); if (len == 1) // Cannot have lone "+" or "-" new NumberFormatException("For input string: \"" + s + "\""); i++; } multmin = limit / radix; while (i < len) { // Accumulating negatively avoids surprises near MAX_VALUE digit = Character.digit(s.charAt(i++), radix); if (digit < 0) { new NumberFormatException("For input string: \"" + s + "\""); } if (result < multmin) { new NumberFormatException("For input string: \"" + s + "\""); } result *= radix; if (result < limit + digit) { new NumberFormatException("For input string: \"" + s + "\""); } result -= digit; } } else { new NumberFormatException("For input string: \"" + s + "\""); } return negative ? result : -result; } public static NumberFormatException forInputString(String s) { return new NumberFormatException("For input string: \"" + s + "\""); } // 把一整数转换为字符串 public static String itoa(int number, char[] s) { int i = 0, j, sign; StringBuffer sb = new StringBuffer(); if ((sign = number) < 0) { // 记录符号 number = -number; // 使n成为正数 } do { s[i++] = (char) (number % 10 + '0'); // 取下一个数字 } while ((number /= 10) > 0); // 删除该数字 // 取负号 if (sign < 0) { s[i++] = '-'; } s[i] = '\0'; for (j = i; j >= 0; j--) { // 生成的数字是逆序的,所以要逆序输出 sb.append(s[j]); } return sb.toString(); } // 把一整数转换为字符串 public static String itoa(int number) { int sign; StringBuffer sb = new StringBuffer(); if ((sign = number) < 0) { // 记录符号 number = -number; // 使n成为正数 } do { sb.append((number % 10)); // 取下一个数字 } while ((number /= 10) > 0); // 删除该数字 // 取负号 if (sign < 0) { sb.append('-'); } // 生成的数字是逆序的,所以要逆序输出 return sb.reverse().toString(); } }
相关推荐
在C语言中,itoa、atoi和strlen是三个非常重要的函数,它们分别用于数值到字符串、字符串到数值的转换以及计算字符串长度。虽然C标准库提供了这些功能,但理解它们的内部实现对于深入掌握C语言及其内存管理机制至关...
"itoa函数及atoi函数" itoa函数和atoi函数是C语言中两个常用的函数,用于在整数和字符串之间进行转换。下面对这两个函数进行详细的介绍。 itoa函数 itoa函数的作用是将整数转换为字符串。它的函数原型为`void ...
`atoi`和`itoa`函数就是两个关键的函数,用于实现字符串与整型之间的转换。本篇将深入探讨这两个函数的函数原型、用法及其在实际编程中的应用。 首先,`atoi`函数全称为“ASCII to Integer”,即把ASCII码表示的...
本文将详细讲解两个常用的函数:`atoi` 和 `itoa`,它们分别用于字符串到整数和整数到字符串的转换。理解这两个函数的原型和用法对于提升C语言编程技能至关重要。 首先,我们来探讨`atoi`函数。`atoi`是英文“ASCII...
在C语言中,`atoi()` 和 `itoa()` 函数是非常实用的工具,它们分别用于字符串到整数的转换和整数到字符串的转换。本文将深入探讨这两个函数的内部实现方法。 首先,我们来看 `atoi()` 函数。`atoi()` 是 "ASCII to ...
C语言itoa()函数和atoi()函数详解 C语言提供了几个标准库函数,可以将任意类型(整型、长整型、浮点型等)的数字转换为字符串。其中,itoa()函数和atoi()函数是两个常用的函数,分别将整数转换为字符串和将字符串...
`atoi()` 和 `itoa()` 是两个在编程中常见的用于字符串和整数之间转换的函数。这篇文章主要讨论了这两个函数的使用方法。 `atoi()` 函数全称是 "ASCII to Integer",它将一个以空字符结尾的字符串转换成对应的整数...
`atoi` 和 `itoa` 是两个非常常用的字符串与整数相互转换的函数。在C++标准库中,`atoi` 函数属于 `<cstdlib>` 或 `<cstdio>` 头文件,而 `itoa` 虽然在一些旧的C语言环境中存在,但在C++标准库中并没有提供,通常...
itoa函数的实现 用C语言写的 很简单的 大家可以参考下
lr_save_string 函数和 itoa 函数的使用 lr_save_string 函数和 itoa 函数是 LoadRunner 中两个非常重要的函数,它们经常被一起使用以实现参数化。lr_save_string 函数用于将一个值保存到一个变量中,而 itoa 函数...
### 整型转字符串函数 itoa 的实现与分析 #### 函数概述 在 C 语言编程中,我们经常需要将整型(`int`)数据转换为字符串(`char[]`),以便进行输出或进一步处理。尽管标准 C 库提供了如 `sprintf()` 或 `snprintf...
在C语言中,`itoa`函数用于将整数转换为字符串,而`strlen`函数则用于计算字符串的长度。这两个函数虽然在某些C库中是标准的,但在C标准库(如ANSI C或C99)中并没有提供。因此,程序员经常需要自己实现这些功能。...
itoa-benchmark, C 整数到字符串转换基准 itoa基准测试Copyright(c) 2014 -2016 ( miloyip@gmail.com )简介这个基准评估从 32 -bit/64位 整数转换为十进制字符串的性能。 函数Prototype包括:void u32
《深入分析C++实现itoa()函数》 在C++编程中,itoa()函数用于将整数转换为c语言风格的字符串。然而,标准C++库并不包含这个函数,因此程序员通常需要自定义实现。本文将深入探讨如何在C++中实现itoa()函数,包括其...
C语言中实现itoa函数的实例详解 在C语言中,itoa函数是一个非常重要的函数,它可以将整数转换为字符串形式,从而方便在程序中使用。本文将详细介绍C语言中实现itoa函数的实例,包括函数原型、函数说明、函数简单...
Itoa 此板条箱提供了用于将整数基元打印到或快速功能。 该实现直接来自但避免了通过的性能损失。 另请参见以打印浮点图元。 版本要求:rustc 1.0+ [ dependencies ] itoa = " 0.4 " 性能(越低越好) 例子 use ...
`itoa`函数就是这样一个工具,它用于将整数转换为ASCII编码的字符串。这个函数在C语言中并不标准,但在某些库或C++环境中被广泛使用。在C++11及更高版本中,标准库提供了更安全、更高效的`std::to_string`替代方案,...