10 2021 档案
摘要:#include<iostream> using namespace std; struct student { int num; char name[10]; int age; }; void input(student *stu, int m); void disp(student *p, in
阅读全文
摘要:package u18; import java.util.ArrayList; import java.util.Collections; import java.util.List; /** * 通过实现comparable接口来比较多个对象的属性值,并按顺序输出 * @author young
阅读全文
摘要:实验4:NoSQL和关系数据库的操作比较 实验说明: 1、 本次实验是第四次上机,属于验证性实验。实验报告上交截止日期为2021年10月31日上午12点之前。 2、 实验报告命名为:信1905-1班学号姓名实验四.doc。 实验环境: 1、操作系统:Linux(建议Ubuntu16.04); 2、H
阅读全文
摘要:百度文字识别遇到的错误 {"error_code":110,"error_msg":"Access token invalid or no longer valid"} 出现上述错误,是因为没有将例子中的access token的结果进行正确替换。 我自己画蛇添足,把他原本的内容给替换了
阅读全文
摘要:package u16; //抽象命令类 public abstract class AbstractCommand { public abstract int execute(int value); //声明命令执行方法execute() public abstract int undo(); /
阅读全文
摘要:实验四 文件操作 一、实验目的 1. 掌握窗口控件的使用方法; 2. 掌握文件系统的操作方法、File 类和 Directory类的使用。 二、实验要求 根据要求,编写 C#程序,并将程序代码和运行结果写入实验报告。 三、实验内容 1.编写一个简易的文件管理器,通过本次实验,练习 TreeView、
阅读全文
摘要:首先,在本次的阅读过程中有学到了一个专有的名词,叫做概念的一致性。正如书中所说的那样,在计算机领域绝大多数系统体现出的概念差异和不一致性远远超过了经过了几个世纪沉淀发展的古建筑群了,这通常并不是因为它由不同的设计师们开发,而是由于设计被分成了由若干人完成的若干任务。所以在系统分开发的过程中概念完整性
阅读全文
摘要:实验三 Windows 应用程序开发 一、实验目的 1. 掌握窗口控件的使用方法; 2. 掌握Windows 的编程基础。 二、实验要求 根据要求,编写 C#程序,并将程序代码和运行结果写入实验报告。 三、实验内容 1.编写一个计算器,练习在窗体上添加控件、调整控件的布局,设置或修改控件属性, 编写
阅读全文
摘要:实验二 面向对象程序设计 一、实验目的 1. 理解类的定义、继承等面向对象的的基本概念; 2. 掌握C#语言定义类及其各种成员(字段,属性,方法)的方法; 3. 掌握方法覆盖的应用; 4. 掌握接口的定义和实现方法。 二、实验要求 根据要求,编写 C#程序,并将程序代码和运行结果写入实验报告。 三、
阅读全文
摘要:实验一 语言基础 一、实验目的 1. 熟悉Visual Stido.NET 实验环境; 2. 掌握控制台程序的编写方法; 3. 掌握C#程序设计语言的语法基础; 4. 掌握控制语句和数组的使用。 二、实验要求 根据题目要求,编写 C#程序,并将程序代码和运行结果写入实验报告。 三、实验内容 1. 编
阅读全文
摘要:package u14; public class RealBBS implements BBS { @Override public void function() { // TODO Auto-generated method stub System.out.println("欢迎您的光临");
阅读全文
摘要:#include <iostream> #include<memory> using namespace std; class play { public: virtual void play1() = 0; virtual void play2() = 0; }; class player : p
阅读全文
摘要:package u13; class Coordinates { private int x; private int y; public Coordinates(int x, int y) { this.x = x; this.y = y; } public int getX() { return
阅读全文
摘要:#include <iostream> #include <string> #include <vector> using namespace std; //棋子颜色 enum PieceColor { BLACK, WHITE }; //棋子位置 struct PiecePos { int x;
阅读全文
摘要:package u12; import java.util.Scanner; public class Client { public static void main(String[] args) { MainFrame f = new MainFrame(); f.fun(); } } pack
阅读全文
摘要:#include <iostream> //子系统:内存 class Memory { public: Memory() {} void selfCheck() { printf("内存自检\n"); } }; //子系统:CPU class CPU { public: CPU() {} void
阅读全文
摘要:#include <iostream> #include <string> #include <list> using namespace std; class Phone { public: Phone() {} virtual ~Phone() {} virtual void ShowDecor
阅读全文
摘要:package u11; public class ComplexPhone extends Changer{ public ComplexPhone(Phone phone) { super(phone); System.out.println("变成高级手机"); flash(); } publ
阅读全文
摘要:1. 对系统类进行描述,确定属性和方法。 2. 分析系统类模型,找出类之间的关系并画出类图。 3. 绘制“取消会议(Remove Meeting )”的时序图。
阅读全文
摘要:package u10; public class Client { public static void main(String a[]) { AbstractFile obj1, obj2, obj3, obj4, obj5; Folder plate1, plate2, plate3; obj
阅读全文
摘要:#include <iostream> #include <string> #include <list> using namespace std; class Component { protected: string name; public: Component(string name) :n
阅读全文
摘要:缺乏合理的时间进度控制是造成滞后的主要原因,比其他任何事情影响的和还大,书中也对造成这种这种普遍灾难的原因进行了并进行了详细列举。 首先,我们对估算技术缺乏有效的研究。也就是文章中所介绍的对于与每一个编程人员来说都是乐观主义者,在编程人员的心中,认为一切都将运作良好,每一项任务仅花费它所“应该”花费
阅读全文
摘要:写的非常详细,可以参考 一、使用之前,我们先来掌握3个东西是用来干什么的。 npm: Nodejs下的包管理器。 webpack: 它主要的用途是通过CommonJS的语法把所有浏览器端需要发布的静态资源做相应的准备,比如资源的合并和打包。 vue-cli: 用户生成Vue工程模板。(帮你快速开始一
阅读全文
摘要:今天遇到了这个问题: org.apache.thrift.transport.TTransportException: Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083. at org.apache.thrift.transp
阅读全文
摘要:package u8; public class Adapter implements ICat,IDog{ private IDog DogImpl = null; private ICat CatImpl = null; public Adapter(IDog DogImpl,ICat CatI
阅读全文
摘要:#include <iostream> #include <string> using namespace std; class ThreeElectricOutlet { public: virtual void connectElectricCurrent() = 0; }; class Two
阅读全文
摘要:#include<cmath> #include<iostream> using namespace std; class Vector { private: double *array = new double[4]; double length; public: Vector(double ar
阅读全文
摘要:#include<iostream> #include<string> using namespace std; class StudentNo { private: static StudentNo *student; string no; StudentNo() {}; void setStud
阅读全文
摘要:#include<iostream> #include<string> using namespace std; //抽象产品类 男人 class Man { public: virtual void makeM() = 0; }; //具体产品类 白色男人 class WhiteMan : pub
阅读全文
摘要:作为一个软件工程系的学生来说了解自己未来所要从事的职业来说是必须的。提到编程我自己所想到的就是坐在电脑前根据自己的想法进行代码的堆砌,可事实上并没有那么简单。 因为对于一个程序员来说我们的最终目的是编写一套成熟的、稳定的、具有实际的使用价值的一套通用的编程产品。要成为通用的编程产品,程序必须按照普遍
阅读全文
摘要:#include <iostream> #include <fstream> #include <bitset> #include <string> using namespace std; //define the type of data typedef unsigned char byte;
阅读全文
摘要:今天写了设计模式的建造者模式 #include<iostream> using namespace std; #include<string> class Computer { private: string host; //主机 string internal; //内存 string hardd
阅读全文
摘要:测试题目: 1、数据导入: 要求将样表文件中的(AA_GXJSQYDC2019)数据导入HIVE数据仓库中。 分别将四个标准维度表导入数据仓库中。 2、数据清洗: 根据标准维度将国民经济行业维度、地域维度、高新技术领域维度、企业所属领域维度四个维度字段清洗完成。 3、数据可视化展示: 尝试按照某一维
阅读全文
摘要:上传到node01 建表完成,导入到表完成 将表导入到mysql: 导出到mysql完成 其他的类似,结果如下 最后echart图:
阅读全文
摘要:考试系统界面展示: <!DOCTYPE html> <!-- saved from url=(0052)http://getbootstrap.com/docs/4.0/examples/dashboard/ --> <html lang="en"> <head> <meta http-equiv=
阅读全文