Number
Byte Short Integer Long Float Double
Number
byteValue, shortValue...
compareTo
Integer
MAX_VALUE, MIN_VALUE, SIZE
decode(String nm) 0x 0X # 0
parseInt(String s, int radix)
toXXXString()
toString(int i)
valueOf(String s, int radix) == new Integer(Integer.parseInt(s, radix))
数字格式化:
d 十进制
f 浮点数
n 换行字符
tB 英文全名月份
td, te 数字天数,te补0
ty, tY 年,2位和4位
tl 12制小时
tM 补0分钟数
tp am/pm小写
tm 补0月份
tD 月/天/年
%+-,08.3d 带符号的左对齐的三位小数带, 分割符的0前缀8位数字
DecimalFormat
new DecimalFormat("###,###.###").format(123456.789)
new DecimalFormat("000000.000").format(123456.789)
Math
random
Character
数字,字母,空白,大写,小写,转换大小写
\t, \b, \n, \r, \f, \", \', \\
String
charAt, substring, split, subSequence
trim, toLowerCase, toUpperCase
indexOf, lastIndexOf, contains
拼接, 比较, endsWith, startsWith, compareTo(IgnoreCase), equals, regionMatches, matches
StringBuffer, StringBuilder
字符串的构造类,线程安全StringBuilder
基本类型和基本类型对象的自动装箱和拆箱
什么?数字和字符串的转换、处理、格式化。
相关推荐
15 Numbers, Strings, and Collections 16 Working with Files 17 Memory Management and Automatic Reference Counting (ARC) 18 Copying Objects 19 Archiving Part III: Cocoa, Cocoa Touch, and the iOS SDK 20...
15 Numbers, Strings, and Collections 16 Working with Files 17 Memory Management and Automatic Reference Counting 18 Copying Objects 19 Archiving Part III Cocoa, Cocoa Touch, and the ...
1. Python基础:书中第一部分“Dipping Your Toe into Python”是为初学者准备的,涵盖了编程基础知识和字符串的处理,例如在“Chapter 1: Programming Basics and Strings”中,读者将学习如何编写Python程序,了解...
7 Iterators and the Generic for 55 7.1 Iterators and Closures 55 7.2 The Semantics of the Generic for 57 7.3 Stateless Iterators 58 7.4 Iterators with Complex State 60 7.5 True Iterators 61 8 ...
1. 循环与数字(Loops and numbers): - 使用`while`循环进行迭代,例如从0迭代到10(`while i )。 - 在循环中处理数字,如判断数字的正负,并输出结果。 2. 条件语句(Conditionals): - 使用`if`语句结合`for...
java 核心技术 第八版 core 卷1 Core Java, 8th Edition Core Java. Volume I. Fundamentals, 8th Edition Core Java. Volume II. Advanced Features, 8th Edition 官方网站 http://horstmann.com/corejava.html ...
从第五章到第九章,书中可能会深入探讨各种数据结构和算法,包括链表(Linked Lists)、树和图(Trees and Graphs)、数组和字符串(Arrays and Strings)、递归(Recursion)、排序(Sorting)以及并发编程...
2 Introduction to C++ and the StandardLibrary 7 2.1 Historyof the C++ Standards . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.1.1 Common Questionsabout the C++11 Standard . . . . . . . ....
第二章 2.2 Exercises for Section 2.2 2.2.1 Consider the context-free grammar: S -> S S + | S S * | a Show how the string aa+a* can be generated by this grammar. Construct a parse tree for this string....
7. Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 141 7.1 Creating Arrays 141 7.2 Reading and Writing Array ...
CHAPTER 14 Chars, Strings, and Working with Text 317 CHAPTER 15 Enumerated Types and Bit Flags 361 CHAPTER 16 Arrays 373 CHAPTER 17 Delegates 391 CHAPTER 18 Custom Attributes 421 CHAPTER 19 Nullable ...
**基本数据类型(Numbers and String)** - **数字(Numbers)**:包括整数(Integer),浮点数(Float),长整数(Long Integer)和复数(Complex Number)。 - **字符串(Strings)**:可以用单引号或双引号括起,也可以使用三...
numbers = [1, 4, 6, 7, 9, 12, 17] odd_numbers = list(filter(is_odd, numbers)) print(odd_numbers) ``` 输出结果为:`[1, 7, 9, 17]` **示例2:去除空字符串** 假设有一个包含空字符串和非空字符串的列表,...
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9] # 定义一个函数来计算平方 def square(x): return x * x # 使用 map() 函数应用到列表 squared_numbers = list(map(square, numbers)) print(squared_numbers) # 输出: ...
备份最后一天所有修改的文件. 4-1. 变量赋值和替换 4-2. 一般的变量赋值 4-3. 变量赋值,一般的和比较特殊的 4-4. 整型还是string? 4-5. 位置参数 4-6. wh,whois 节点名字查询 4-7. 使用shift 5-1. echo 一些诡异的...
备份最后一天所有修改的文件. 4-1. 变量赋值和替换 4-2. 一般的变量赋值 4-3. 变量赋值,一般的和比较特殊的 4-4. 整型还是string? 4-5. 位置参数 4-6. wh,whois节点名字查询 4-7. 使用shift 5-1. echo一些诡异的...
第7章迭代器与泛型for....40 7.1 迭代器与闭包...........40 7.2 范性for的语义...........42 7.3 无状态的迭代器.......43 7.4 多状态的迭代器.......44 7.5 真正的迭代器...........45 第8章编译·运行·...