会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Wint_x19
博客园
首页
新随笔
联系
订阅
管理
2025年3月21日
android studio 真机wifi调试经验汇总
摘要:
2025/03/11 真机连接连不上wifi调试可能的原因: 1.手机没有开启开发者模式 2.手机没有开启usb调试以及wifi调试 3.手机应该改为传输文件模式 4.手机和电脑应该连接同一个wifi 5.在电脑cmd窗口输入adb connect ip:port(前提电脑需要配好adb环境) ad
阅读全文
posted @ 2025-03-21 10:58 Wint_x19
阅读(469)
评论(0)
推荐(0)
2023年5月24日
codeforces#1829H.Don't Blame Me(dp)
摘要: 题解 ``` #include #define io ios::sync_with_stdio(false); #define off cin.tie(0), cout.tie(0); #define all(x) x.begin(),x.end() #define inf 0x3f3f3f3f3f
阅读全文
posted @ 2023-05-24 16:50 Wint_x19
阅读(35)
评论(0)
推荐(0)
2022年12月31日
cf-1767C-Count Binary Strings(区间dp)
摘要: 题面 https://codeforces.com/problemset/problem/1767/C 下面展示带注释的ac代码 在代码里解释思路 Ac代码 #include<bits/stdc++.h> #define io ios::sync_with_stdio(false); #define
阅读全文
posted @ 2022-12-31 12:44 Wint_x19
阅读(103)
评论(0)
推荐(0)
2022年7月22日
Educational Codeforces Round 132 (C,D) 题解 cf#1709(超详细-解题过程清晰完整
摘要: Educational Codeforces Round 132 (C,D) 题解 cf#1709 A, B 没写 E,F 更新中
阅读全文
posted @ 2022-07-22 11:02 Wint_x19
阅读(152)
评论(0)
推荐(0)
2022年5月27日
Java中抽象类和接口的区别
摘要: 介绍了Java中抽象类和接口的区别
阅读全文
posted @ 2022-05-27 17:58 Wint_x19
阅读(43)
评论(0)
推荐(0)
2022年4月21日
Java-类与对象-多态
摘要:
讲解了Java中类与对象中的多态特征。
阅读全文
posted @ 2022-04-21 18:19 Wint_x19
阅读(68)
评论(0)
推荐(0)
2022年3月29日
JAVA中正则表达式的应用
摘要:
一、应用场景 在Java中,当我们想要验证用户输入是否符合规范时,可以选择正则表达式 我们可以用正则表达式来实现匹配,替换或拆分字符串 二、正则表达式的常见用法 1、指定字符 正则表达式待验证字符串T or F Java Java True Java Jave False 2、. 任意单个字符(换行
阅读全文
posted @ 2022-03-29 22:37 Wint_x19
阅读(76)
评论(0)
推荐(0)
2022年3月6日
Eclipse 安装配置和 Git 创建代码库 教程
摘要:
Eclipse 详细安装配置和使用 Git 在 Github 创建代码库 教程
阅读全文
posted @ 2022-03-06 16:47 Wint_x19
阅读(88)
评论(0)
推荐(0)
公告