LeetCode小点心
January 01, 2022
921
在我自己的杯中,饮了我的酒吧,朋友。
一倒在别人的杯里,这酒的腾跳的泡沫便要消失了。
Take my wine in my own cup, friend.
It loses its wreath of foam when poured into that of others.
https://blog.csdn.net/syysyf99/article/details/106211336
Arraylist和数组互相转换
网上搜Arraylist和数组互相转换的方法时,举的例子都是String类型的
但是对于int类型如果这样写:
1 |
|
则会报错,这是因为int[]并不等同于Integer[]。因此如果换成Integer[]数组,则能正确运行。
1 |
|
如果非得希望得到int[]的话,只能用循环赋值来得到了。
1 |
|
如果既不想用循环,又想要得到int[],那就只能在jdk8中使用IntStream了。
调用函数
- 本文作者:bobo
- 本文链接:https://boyolo.github.io/article/8368.html
- 版权声明:本博客所有文章均采用 BY-NC-SA 许可协议,转载请注明出处!
查看评论