摘要:
Java好是好,就是得多背一些方法才行。加油 阅读全文
摘要:
一面: 1.自我介绍,针对实习经历问了几个问题; 2.你知道哪些网络协议? 3.Http协议是什么层? 4.进程和线程的区别? 5.基本数据类型有哪些? 6.float和double有什么区别? 7.char是几个字节? 8.面向对象有哪些特点? 9.什么是继承?什么是多态? 10.子类都能访问到父 阅读全文
摘要:
import java.util.Scanner; public class Main { public static void main(String[] args){ Scanner input = new Scanner(System.in); while(input.hasNext()){ int n = input.nextInt(); int sum = 0; ... 阅读全文
摘要:
此外我还按照手动演算进位的方法写了一种,有点绕,但是也AC了,仅供参考。 阅读全文
摘要:
//no package name //import when necessary import java.util.Scanner; //it has to be Main class public class Main { public static void main(String[] args){ Scanner input = new Scanner(System.in); ... 阅读全文
摘要:
安装和注册:https://blog.csdn.net/qq_35246620/article/details/80522720 修改hosts文件:https://blog.csdn.net/qq_35246620/article/details/66970211?locationNum=1&fp 阅读全文
摘要:
刷新当前Activity: https://blog.csdn.net/u011682673/article/details/53207700 实现Button的5种方法: https://blog.csdn.net/Q___0/article/details/74177841 不推荐使用enum枚 阅读全文
摘要:
Switch开关控件样式(仿iOS):https://blog.csdn.net/qq_34763699/article/details/54954394 设置layout背景透明:https://blog.csdn.net/stanny_bing/article/details/49589905 阅读全文
摘要:
创建Android项目后,点击运行,发现模拟器无法启动,并且报错: emulator: ERROR: x86 emulation currently requires hardware acceleration! Emulator: Warning: Quick Boot / Snapshots n 阅读全文
摘要:
1.多个工程在同一窗口中打开:https://jingyan.baidu.com/article/2d5afd693cd67e85a3e28e6f.html 2. New package: https://blog.csdn.net/a445020593/article/details/595418 阅读全文