会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Raink
博客园
首页
新随笔
联系
订阅
管理
2022年4月9日
Java API (0409)
摘要: 包装类 装箱拆箱 // int -> Integer int i = Integer.intValue(); // Integer -> int Integer integer = Integer.valueOf(i); Integer integer = new Integer(i); 类型转换
阅读全文
posted @ 2022-04-09 16:54 Raink
阅读(67)
评论(0)
推荐(0)
2022年3月30日
王道Java40th笔记(0403)
摘要: 基础知识 全限定类名 包含包名的方法名全称;防止因为类名重复,编译器就近原则选择错方法 转义字符 /b 退格 /t Tab nextLine nextLine() 后面不要使用 next*() 会导致读取错误 foreach for(ElemType et:容器名) Java仅有值传递 值传递:方法
阅读全文
posted @ 2022-03-30 09:02 Raink
阅读(198)
评论(0)
推荐(0)
2022年2月5日
C++ STL
摘要:
阅读全文
posted @ 2022-02-05 10:16 Raink
阅读(29)
评论(0)
推荐(0)
2022年2月4日
Python 爬虫工具
摘要: requests $ pip install requests import requests kw = {'wd':'长城'} headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.3
阅读全文
posted @ 2022-02-04 15:08 Raink
阅读(79)
评论(0)
推荐(0)
公告