编写一个简单程序,要求数组长度为5,静态赋值10,20,30,40,50,在控制台输出该数组的值。 1 package G; 2 3 public class G1 { 4 5 public static void main(String[] args) { 6 // TODO Auto-gener ...
分类:
编程语言 时间:
2021-04-21 13:00:48
阅读次数:
0
在/root/init.rc中添加下面内容, 开机就会执行/system/bin/boot-complete-script.sh脚本 service boot_complete_script /system/bin/boot-complete-script.sh class main oneshot ...
分类:
移动开发 时间:
2021-04-21 12:38:11
阅读次数:
0
Java 输入输出流,Java InputStream FileInputStream OutputStream FileOutputStream ©Copyright 蕃薯耀 2021-04-20 https://www.cnblogs.com/fanshuyao/ 一、字节流和文件流使用,实现文 ...
分类:
编程语言 时间:
2021-04-21 12:36:15
阅读次数:
0
最近 Vue 项目中用到的触摸滑动插件 Swiper,执行 npm install swiper vue-awesome-swiper --save 安装 Swiper 后,在 main.js 中进行引入, import VueAwesomeSwiper from 'vue-awesome-swip ...
分类:
Web程序 时间:
2021-04-21 12:36:01
阅读次数:
0
Main: public class Main { public static void main(String[] args) { Prizes<String> prizes = new Prizes<>(); prizes.addPrizes("一等奖: 荣耀40S手机 一部"); prizes ...
分类:
编程语言 时间:
2021-04-21 12:33:09
阅读次数:
0
####rewrite语法 | Syntax: | rewrite regex replacement [flag]; | | | | | Default: | — | | Context: | server, location, if | //所有请求转发到/pages/maintain.html ...
分类:
其他好文 时间:
2021-04-21 12:32:16
阅读次数:
0
本人手贱一不小心把pycharm的主菜单栏搞丢了!尝试的办法恢复了,总结一下 主菜单栏就是这个 手残的过程实我点了这个: 那咋恢复呀?!! 1 按Ctrl + Shift + A打开“Find Action”对话框,输入view,找到Main Menu,打开on即可 ...
分类:
其他好文 时间:
2021-04-21 12:31:17
阅读次数:
0
堆排序 public class HeapSort { public static void main(String[] args) { int[] arr = {1, 3, 519, 2, 10, 8, 0, 998}; heapSort(arr); System.out.println(Arra ...
分类:
编程语言 时间:
2021-04-21 12:26:45
阅读次数:
0
IDEA常用快捷键 记录学习,如有意见请联系! 参考至:https://zhangxy.blog.csdn.net/article/details/103963249 1、编辑类快捷键 编辑类快捷键 说明 psvm + Tab 生成main方法 sout + tab 生成输出语句 Ctrl+X / ...
分类:
其他好文 时间:
2021-04-21 12:26:26
阅读次数:
0
都是JUC并发包下的类 CountDownLatch:倒计时,countDown每次减少,await控制达到倒计时要求值 //下自习离开案例,班长必须最后走 public class CountDownLatchDemo { public static void main(String[] args ...
分类:
其他好文 时间:
2021-04-21 12:21:06
阅读次数:
0