上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 39 下一页
摘要: 缺乏合理的时间进度控制是造成滞后的主要原因,比其他任何事情影响的和还大,书中也对造成这种这种普遍灾难的原因进行了并进行了详细列举。 首先,我们对估算技术缺乏有效的研究。也就是文章中所介绍的对于与每一个编程人员来说都是乐观主义者,在编程人员的心中,认为一切都将运作良好,每一项任务仅花费它所“应该”花费 阅读全文
posted @ 2021-10-13 15:39 yasai 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 写的非常详细,可以参考 一、使用之前,我们先来掌握3个东西是用来干什么的。 npm: Nodejs下的包管理器。 webpack: 它主要的用途是通过CommonJS的语法把所有浏览器端需要发布的静态资源做相应的准备,比如资源的合并和打包。 vue-cli: 用户生成Vue工程模板。(帮你快速开始一 阅读全文
posted @ 2021-10-12 23:31 yasai 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 安装git,修改完路径后,一切保持默认就好 是用哪个地方打开: 阅读全文
posted @ 2021-10-11 21:42 yasai 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 今天遇到了这个问题: 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 阅读全文
posted @ 2021-10-10 19:30 yasai 阅读(911) 评论(0) 推荐(0) 编辑
摘要: package u8; public class Adapter implements ICat,IDog{ private IDog DogImpl = null; private ICat CatImpl = null; public Adapter(IDog DogImpl,ICat CatI 阅读全文
posted @ 2021-10-09 14:29 yasai 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> using namespace std; class ThreeElectricOutlet { public: virtual void connectElectricCurrent() = 0; }; class Two 阅读全文
posted @ 2021-10-08 21:12 yasai 阅读(35) 评论(0) 推荐(0) 编辑
摘要: #include<cmath> #include<iostream> using namespace std; class Vector { private: double *array = new double[4]; double length; public: Vector(double ar 阅读全文
posted @ 2021-10-07 20:19 yasai 阅读(16) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; class StudentNo { private: static StudentNo *student; string no; StudentNo() {}; void setStud 阅读全文
posted @ 2021-10-06 21:15 yasai 阅读(27) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; //抽象产品类 男人 class Man { public: virtual void makeM() = 0; }; //具体产品类 白色男人 class WhiteMan : pub 阅读全文
posted @ 2021-10-06 21:06 yasai 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 作为一个软件工程系的学生来说了解自己未来所要从事的职业来说是必须的。提到编程我自己所想到的就是坐在电脑前根据自己的想法进行代码的堆砌,可事实上并没有那么简单。 因为对于一个程序员来说我们的最终目的是编写一套成熟的、稳定的、具有实际的使用价值的一套通用的编程产品。要成为通用的编程产品,程序必须按照普遍 阅读全文
posted @ 2021-10-05 21:16 yasai 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 39 下一页