摘要:
https://docs.oracle.com/javase/tutorial/java/data/numberformat.htmlFormatting Numeric Print OutputEarlier you saw the use of theprintandprintlnmethods... 阅读全文
摘要:
package com.example.helloworld;/** * Created by carl on 10/21/15. */public class StringChecker { public static void main(String[] arguments) { ... 阅读全文
摘要:
StringTokenizer类别可以通过某个字符或者多个字符作为分界符,来将字符串划分为多个标记(token)。package com.example.helloworld;import java.util.StringTokenizer;/** * Created by carl on 10/2... 阅读全文
摘要:
1Python支持运行时使用“lambda”建立匿名函数(anonymous functions that are not bound to a name)。python "lambda"和functional programming语言有区别,但是他非常强大经常拿来和诸如filter(),map(... 阅读全文