上一页 1 2 3 4 5 6 7 8 9 10 ··· 32 下一页
摘要: #include<iostream> #include<string> #include <vector> #include <map> using namespace std; class Date { public: Date() {} Date(int year, int month, int 阅读全文
posted @ 2021-10-14 07:58 丁帅帅dss 阅读(48) 评论(0) 推荐(0)
摘要: #include<iostream> #include<string> using namespace std; class User; class Date { public: Date() {} Date(int year, int month, int day) :year(year), mo 阅读全文
posted @ 2021-10-13 22:45 丁帅帅dss 阅读(32) 评论(0) 推荐(0)
摘要: 三种模式 一般模式 vim xxx 进入的界面就是 编辑模式 在一般模式下按i进入编辑模式 按esc回到一般模式 命令模式,在一般模式下按:或/进入命令模式,按esc回到一般模式,在编辑模式下先按esc在按:回到命令模式 快捷键练习 一般模式下 拷贝当前行 yy 按 p 粘贴,拷贝当前行向下的5行 阅读全文
posted @ 2021-10-12 23:09 丁帅帅dss 阅读(54) 评论(0) 推荐(0)
摘要: package com.ding.mytreeset; import java.util.TreeSet; import java.util.Comparator; public class Comparatortest { public static void main(String[] args 阅读全文
posted @ 2021-10-11 22:30 丁帅帅dss 阅读(52) 评论(0) 推荐(0)
摘要: 1.数据字典 desc dba_data_files; 查询当前数据库的所有的表空间及其对应的数据文 select file_name, tablespace_name, bytes from dba_data_files; select file#, name, checkpoint_change 阅读全文
posted @ 2021-10-10 22:57 丁帅帅dss 阅读(188) 评论(0) 推荐(0)
摘要: 哈希值是JDK根据对象的地址或者字符串或者数字算出来的int类型的数值 同一个对象多次调用hashCode()方法返回的哈希值是相同的 默认情况下,不同对象的哈希值是不同的。而重写hashCode()方法,可以实现让不同对象的哈希值相同 package com.ding.hashtest; impo 阅读全文
posted @ 2021-10-09 22:06 丁帅帅dss 阅读(602) 评论(0) 推荐(0)
摘要: 第一章 1、【单选题】 (5分) 创业是一门关乎实践的课程,因此不需要学习。(错误) 2、【多选题】 (5分) 创业过程中遇到困难和挫折的时候应该:(不断反思;咬牙坚持 ) 3、【多选题】 (5分) 以下哪些是本课程推荐的教材?(精益创业;IDEO设计改变一切) 4、【多选题】 (5分) 对于创业者 阅读全文
posted @ 2021-10-08 22:05 丁帅帅dss 阅读(8169) 评论(0) 推荐(0)
摘要: 实验一: Tomcat Embedded 启动(实现一个Servlet) 要求:使用Tomcat实现一个Servlet。 通过http://localhost:<学号后五位>/Test访问这个Servlet,返回文字**“学号:<学号>,学生姓名:<学生姓名>”** 初始目录 源码 import j 阅读全文
posted @ 2021-10-08 11:11 丁帅帅dss 阅读(120) 评论(0) 推荐(0)
摘要: 特点 不可以存储重复元素 没有索引 可以将元素按照指定规则进行排序 自然排序Comparable的使用 要求按照年龄从小到大排序,年龄相同时,按照姓名的字母顺序排序 package com.ding.mytreeset; /** * @Description TODO * @Author 丁帅帅 * 阅读全文
posted @ 2021-10-07 22:55 丁帅帅dss 阅读(32) 评论(0) 推荐(0)
摘要: C:\Users\###\AppData\Local\Packages\CanonicalGroupLimited.Ubuntu18.04onWindows_79rhkp1fndgsc\LocalState\rootfs ###是你的用户名 阅读全文
posted @ 2021-10-06 22:30 丁帅帅dss 阅读(97) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 32 下一页