摘要: 👨‍💻Build a scoring system , give the score by referee , and entering the score in system , then take out the max score and the min score , print the 阅读全文
posted @ 2020-06-12 15:37 juyss 阅读(257) 评论(0) 推荐(0)
摘要: ✏️Practice the usage of ArrayList all of String with a exampe of NoteBook. 📒ArrayList all of String的部分函数用法练习,以记事本的例子进行实现 , 顺便练习了一下成员函数的创建及使用。 做了一个记事本 阅读全文
posted @ 2020-06-12 15:18 juyss 阅读(164) 评论(0) 推荐(0)
摘要: MySQL学习记录 DDL : 数据库定义语句(Datebase Define Language) DML : 数据管理语句(Datebase Manage Language) DQL : 数据库查询语言(Datebase Query Language) 数据库定义语句(Datebase Defin 阅读全文
posted @ 2020-06-12 15:16 juyss 阅读(177) 评论(0) 推荐(0)
摘要: This is my 2nd java code (actually, it's the 2nd code that I upload to my blog😝),and this is what I want to do after I learned java,to write a progra 阅读全文
posted @ 2020-06-12 15:10 juyss 阅读(349) 评论(0) 推荐(0)
摘要: 👉The method overloading is using one single method name with different parameters to created different methods . 今天重新学习了方法重载。 方法重载 方法重载是在一个类中,创建方法时用同 阅读全文
posted @ 2020-06-12 15:05 juyss 阅读(151) 评论(0) 推荐(0)
摘要: 获取InputStream对象的方法 getResourceAsStream(String path) 默认path路径位于Class所在Module的src目录下 . InputStream is = ClassLoader.getSystemClassLoader().getResourceAs 阅读全文
posted @ 2020-06-12 15:04 juyss 阅读(1723) 评论(2) 推荐(1)
摘要: 获取数据库连接的几种方式 ps.数据库URL : String url = "jdbc:mysql://localhost:3306/dailytext?useSSL=false&serverTimezone=UTC" ​ MySQL5.0-->driverClass="com.mysql.jdbc 阅读全文
posted @ 2020-06-12 15:02 juyss 阅读(324) 评论(0) 推荐(0)
摘要: 获取配置文件的两种方式区别 ClassLoader.getSystemClassLoader().getResourceAsStream() //ClassLoader.getSystemClassLoader().getResourceAsStream("String pathName") // 阅读全文
posted @ 2020-06-12 14:59 juyss 阅读(1015) 评论(0) 推荐(0)
摘要: After build my blog following the online course step by step , I began to try to write my own blog✏️ , then I find a problem when after inserting pict 阅读全文
posted @ 2020-06-12 14:57 juyss 阅读(203) 评论(0) 推荐(0)
摘要: ✍️Define a methed to compare the contents of two arrays and return the result . 定义一个方法,用于比较两个数组的内容是否相同. 👉思路: 定义两个数组,分别使用静态初始化完成数组元素的初始化 定义一个方法,用于比较两个 阅读全文
posted @ 2020-06-12 08:10 juyss 阅读(140) 评论(0) 推荐(0)
摘要: 🎮 Let's play a game ! Guess the number your computer💻 created , compare it with what your entrance ⌨️. And give you some prompts . Once you guessed 阅读全文
posted @ 2020-06-12 08:07 juyss 阅读(290) 评论(0) 推荐(0)
摘要: 👉今日在使用Gridea客户端更新博客的过程中,推送到远端仓库后内容显示正常,但是无法载入主题样式,就是没有载入CSS样式,折腾了一下午在搞懂问题出在哪里了,下面说一下自己的解决思路. 问题描述 😵首先,文章写完后,push到远程仓库,查看网站发现CSS样式没有载入,设置的主题没有生效,然后怀疑 阅读全文
posted @ 2020-06-12 07:51 juyss 阅读(1062) 评论(0) 推荐(0)
摘要: Learning object recognition and object interaction, a class member variables can be other class object, an object can be composed of other classes of 阅读全文
posted @ 2020-06-12 07:49 juyss 阅读(556) 评论(0) 推荐(0)
摘要: DS18b20获取到温度数值保存到变量中,然后和天气图标还有滚动字幕一起发送到OLED 屏幕上显示 需要用到的库均可在Arduino库管理器下载。 电路图: 图中屏幕接线已在代码中写出,温度传感器date口需要接一个4.7k欧的电阻; 最终效果如下图: 代码如下: #include <Arduino 阅读全文
posted @ 2020-06-12 07:41 juyss 阅读(1347) 评论(0) 推荐(0)