靓丽时光

文章
5
资源
0
加入时间
3年0月9天

java中基本类型和包装类之间的转换

1、Integer转换    Integer a = newInteger(3);           //定义Integer包装类对象    int  b  =  a+5;         //对象和基本对象进行运算2、jdk1.5引入自动装箱和拆箱机制后,转换更便利装箱:把基本类型转换成包转类,使其具有对象的性质,又可分为手动装箱和自动装箱int i=10;Intege

数据库表级联查询

所谓的级联查询也就是通过一个uid 将两个表进行链接起来,你可以获取另一个表中的字段数据。下面列一个例子和并讲解使用:用的是mybatis框架。 l.tid AS "tid", l.id AS "id", l.create_by AS "createBy", l.create_date AS "createDate",

Python刷题:简单数组(五)21.Max Consecutive Ones22.K-diff Pairs in an Array23.Array Partition Ⅰ24.Reshape the Matrix25.Shortest Unsorted Continuous Subarray

21.Max Consecutive Ones    Given a binary array, find the maximum number of consecutive 1s in this array.    给定一个二进制数组,找出由该数组中连续出现的数字一的最大个数。示例:nums=[1,1,0,1,1,1],输出3程序:def fm(nums): curren...