上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页
摘要: 新建一个MFC项目放桌面了 全部默认完成 打开资源视图 按序号依次打开或填入 属性工具箱资源视图都在视图里面 添加处理函数 添加下面函数内容即可 void CaView::OnDda() { // TODO: 在此添加命令处理程序代码 int x0 = 0, y0 = 0, x1 = 300, y1 阅读全文
posted @ 2021-10-24 00:44 丁帅帅dss 阅读(579) 评论(0) 推荐(0)
摘要: 代码 package com.ding.test; import java.text.ParseException; import java.text.SimpleDateFormat; import java.time.Year; import java.util.Date; public cla 阅读全文
posted @ 2021-10-23 11:33 丁帅帅dss 阅读(60) 评论(0) 推荐(0)
摘要: package com.ding.mymap; import java.util.Collection; import java.util.HashMap; import java.util.Map; import java.util.Set; public class MapDemo1 { pub 阅读全文
posted @ 2021-10-22 22:38 丁帅帅dss 阅读(53) 评论(0) 推荐(0)
摘要: 1.检测gcc环境 gcc --version 没有的话,安装 yum install centos-release-scl scl-utils-build yum install -y devtoolset-8-toolchain scl enable devtoolset-8 bash Redi 阅读全文
posted @ 2021-10-21 17:04 丁帅帅dss 阅读(39) 评论(0) 推荐(0)
摘要: #include<bits/stdc++.h> using namespace std; class Time { public: virtual ~Time(); Time(); Time(int h, int m, int s); int getH() const; void setH(int 阅读全文
posted @ 2021-10-20 22:55 丁帅帅dss 阅读(40) 评论(0) 推荐(0)
摘要: #include <iostream> #include <string> #include <vector> #include <map> #include <fstream> using namespace std; class Date { public: Date(); Date(int y 阅读全文
posted @ 2021-10-19 22:42 丁帅帅dss 阅读(71) 评论(0) 推荐(0)
摘要: 1.案例需求 创建一个TreeMap集合,键是学生对象(Student),值是籍贯(String),学生属性姓名和年龄,按照年龄进行排序并遍历 要求按照学生的年龄进行排序,如果年龄相同则按照姓名进行排序 package com.ding.mymap; public class Student imp 阅读全文
posted @ 2021-10-18 22:58 丁帅帅dss 阅读(288) 评论(0) 推荐(0)
摘要: package com.ding.mymap; public class Demo { public static void main(String[] args) { System.out.println(sum(10, 20)); System.out.println(sum(10, 20, 3 阅读全文
posted @ 2021-10-17 22:44 丁帅帅dss 阅读(22) 评论(0) 推荐(0)
摘要: 下载依赖 https://www.opengl.org/resources/libraries/glut/glut_downloads.php#windows 找到VS的安装路径创建gl目录将glut.h复制其中 D:\develop\VS2017\VC\Tools\MSVC\14.16.27023 阅读全文
posted @ 2021-10-17 09:59 丁帅帅dss 阅读(187) 评论(0) 推荐(0)
摘要: 结构图 源码 User package cn.edu; public class User{ private Long id; private String name; public Long getId(){ return this.id; } public void setId(Long id) 阅读全文
posted @ 2021-10-15 12:18 丁帅帅dss 阅读(82) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 32 下一页