06 2022 档案
摘要:起因: 将LinearLayout更改为ConstraintLayout 登录界面输入密码旁边的隐藏按钮无法点击 解决办法 在密码EditText加入 android:translationZ="1dp" 隐藏ImageView加入 android:translationZ="2dp" 组件由代码创
阅读全文
摘要:step1 查看远程分支 git branch -a s2 查看本地分支 git branch s3 切换分支 git checkout 本地分支名 s4.同步代码 git pull step5.推送(强制) git push origin develop:目标分支名 -f
阅读全文
摘要:QuickLook 长按空格预览,方向键切换 可预览多格式图片,文本
阅读全文
摘要:neat download manage AKA NDM https://www.neatdownloadmanager.com/index.php/en/
阅读全文
摘要:报错@lombok.NoArgsConstructor 解决办法: 项目右键->open module setting->dependencies->点击+->搜索lombok添加高版本进去 原因lombok被内置ide,无法下载pluging
阅读全文
摘要:学习网站 https://cs.nju.edu.cn/changxu/2_compiler/index.html
阅读全文
摘要:原因: 未下载microG 下载地址: https://modyolo.com/
阅读全文
摘要:任务描述 使用C/C++语言编写PL/0编译程序的词法分析程序。 需要注意的点: (1)识别非法字符:如 @ 、 & 和 ! 等; (2)识别非法单词:数字开头的数字字母组合; (3)标识符和无符号整数的长度不超过8位; (4)能自动识别并忽略/* */及//格式的注释信息; (5)词法分析过程中遇
阅读全文