摘要: 1. 定义函数/存储过程时,有多行,需要这样: DELIMITER ;; CREATE FUNCTION getManager(v_emp_id bigint) ... ;; DELIMITER用户定义命令结束符,这里定义为双分号。也就是遇到双分号,就可以执行命令了。否则mysql认为单行就能执行, 阅读全文
posted @ 2022-04-29 09:00 dvkc 阅读(93) 评论(0) 推荐(0)
摘要: Kotlin 快速入门:https://www.jianshu.com/p/35f0c16242e4 1. 类型后面的? fun test(s:String?) { println("$s may be null") } ?表示可以接收为null的参数s 2. 函数格式: fun 函数名(参数:参数 阅读全文
posted @ 2022-04-29 08:50 dvkc 阅读(54) 评论(0) 推荐(0)
摘要: Android MVP https://blog.csdn.net/lmj623565791/article/details/46596109 butterknife 一个专注于Android系统的View注入框架,以前总是要写很多findViewById来找到View对象,有了ButterKnif 阅读全文
posted @ 2022-04-29 08:46 dvkc 阅读(116) 评论(0) 推荐(0)
摘要: android studio连接手机 1. 启用开发者模式 2. 启用usb调试 https://jingyan.baidu.com/article/574c52196529b26c8d9dc1fa.html 2. 安卓语音播报:Text to Speech https://www.cnblogs. 阅读全文
posted @ 2022-04-29 08:41 dvkc 阅读(313) 评论(0) 推荐(0)