1.拆箱 >>> a, b, c = 1, 2, 3 >>> a, b, c (1, 2, 3) >>> a, b, c = [1, 2, 3] >>> a, b, c (1, 2, 3) >>> a, b, c = (2 * i + 1 for i in range(3)) >>> a, b, c (1, 3, 5) >>> a, (b, c), d = [1, (2, 3), …
震惊!90%的程序员不知道的Java知识! 初学Java的时候都会接触的代码 public static void main(String[] args){ ... } 当时就像背公式一样把这行代码给记住了.但是接触java这么久了, 却一直没有细想过string[] args 到底是干嘛用的.最近接触到的项目用到了这个参数,于是顺便了解下.下面展示下这个神奇的参数. 测试代码如下: public class Test { public static void main(String[] arg…
上一篇说了from in select的本质,具体参见你所不知道的linq.本篇说下from...in... from... in... select 首先上一段代码,猜猜结果是什么? class Program { static void Main(string[] args) { /*var result = from s in new TestApp() { A = 2 } select s;*/ } ).ToString() select (Convert.ToInt32(i) + s)…