自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (9)
  • 收藏
  • 关注

转载 Java --- BigInteger

BigInteger不是基本数据类型之一,它其实更像String,是Java里的一个类。然而它的初始化方式却没有String那么方便可以直接赋值,而是跟其他自定义的类一样,要调用它的构造器进行初始化。这个类的取值范围原则上是没有上限的,取决于你的计算机的内存,它的构造器有以下几种:而且该类数组Math包中。需要import。BigInteger的构造器:这里面最好用的应该是BigI

2017-12-03 22:48:47 150

转载 java ---list

List² ArrayList和LinkedList的大致区别如下:1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。 2.对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList要移动指针。 3.对于新增和删除操作add和remove,LinedList比较占优势,因为ArrayList要移动

2017-12-03 21:01:15 141

转载 C++ 中sort 函数及 cmp 自定义规则的使用

C++ 中sort 函数及 cmp 自定义规则的使用需要头文件#includeusing namespace std;这个函数可以传两个参数或三个参数。第一个参数是要排序的区间首地址,第二个参数是区间尾地址的下一地址。也就是说,排序的区间是[a,b)。简单来说,有一个数组int a[100],要对从a[0]到a[99]的元素进行排序,只要写sor

2017-12-03 20:47:27 13512

数据结构--表、栈、队列(java)

数据结构和算法分析(java)实现中第三章知识点的总结,主要讲的是表。栈、队列的原理和实现,以及应用。一共17页。

2018-07-29

软件测试总结

该文档共34页,全部为个人总结。 总结了软件测试的定义,发展,软件测试的多种常见的方法,他们的模型,如何使用,比较的优缺点。主要是定义和原理的讲解,并没有具体的实例。

2018-07-23

Mastering UML with Rational Rose

Table of Contents Mastering UML with Rational Rose 2002........................................................................................................1 Chapter 1: Introduction to UML.......................................................................................................................4 Introduction to the Object−Oriented Paradigm.......................................................................................4 Encapsulation..............................................................................................................................5 Inheritance..................................................................................................................................6 Polymorphism.............................................................................................................................8 What Is Visual Modeling?.......................................................................................................................8 Systems of Graphical Notation................................................................................................................9 Booch Notation.........................................................................................................................10 Object Management Technology (OMT).................................................................................10 Unified Modeling Language (UML)........................................................................................11 Understanding UML Diagrams..............................................................................................................12 Business Use Case Diagrams....................................................................................................13 Use Case Diagrams...................................................................................................................14 Activity Diagrams.....................................................................................................................14 Sequence Diagrams...................................................................................................................16 Collaboration Diagrams............................................................................................................17 Class Diagrams.........................................................................................................................17 Statechart Diagrams..................................................................................................................18 Component Diagrams...............................................................................................................19 Deployment Diagrams..............................................................................................................21 Visual Modeling and the Software Development Process.....................................................................22 Inception...................................................................................................................................24 Elaboration................................................................................................................................24 Construction..............................................................................................................................25 Transition..................................................................................................................................26 Summary................................................................................................................................................26 Chapter 2: A Tour of Rose...............................................................................................................................27 What Is Rose?........................................................................................................................................27 Getting Around in Rose.........................................................................................................................30 Parts of the Screen....................................................................................................................31 Exploring Four Views in a Rose Model................................................................................................38 Use Case View..........................................................................................................................38 Logical View.............................................................................................................................40 Component View......................................................................................................................42 Deployment View.....................................................................................................................43 Working with Rose................................................................................................................................45 Creating Models........................................................................................................................45 Saving Models..........................................................................................................................46 Exporting and Importing Models..............................................................................................47 Publishing Models to the Web..................................................................................................48 Working with Controlled Units................................................................................................50 Using the Model Integrator.......................................................................................................52 Working with Notes..................................................................................................................53 Working with Packages............................................................................................................54 Adding Files and URLs to Rose Model Elements....................................................................56 Adding and Deleting Diagrams................................................................................................56 Setting Global Options...........................................................................................................................57 Working with Fonts..................................................................................................................58 Working with Colors................................................................................................................58

2018-07-23

华为模拟器

里面是可以安装使用的华为模拟器。 只需要下载可以直接安装。 运行没有问题。 模拟计算机网络的实验或部分过程

2018-07-23

计算机网络实验--ip部分

该文档为计算机网络实验中ip部分的答案和讲解。 一共14页。 其中有15个问题的答案和wireshark的贴图讲解。 以及中文实验指导书的链接。

2018-07-23

计算机网络--ICMP

该文档是关于计算机网络中实验ICMP部分的答案。题目为英文,如下,答案为中文,部分有图文解释。 Ethereal Lab: ICMP Version: July 2005 © 2005 J.F. Kurose, K.W. Ross. All Rights Reserved Computer Networking: A Topdown Approach Featuring the Internet, 3rd edition. In this lab, we’ll explore several aspects of the ICMP protocol: • ICMP messages generating by the Ping program; • ICMP messages generated by the Traceroute program; • the format and contents of an ICMP message. Before attacking this lab, you’re encouraged to review the ICMP material in the textbook (Section 4.4.3 in the 3rd edition.) We present this lab in the context of the Microsoft Windows operating system. However, it is straightforward to translate the lab to a Unix or Linux environment. 1. ICMP and Ping Let’s begin our ICMP adventure by capturing the packets generated by the Ping program. You may recall that the Ping program is simple tool that allows anyone (for example, a network administrator) to verify if a host is live or not. The Ping program in the source host sends a packet to the target IP address; if the target is live, the Ping program in the target host responds by sending a packet back to the source host. As you might have guessed (given that this lab is about ICMP), both of these Ping packets are ICMP packets.

2018-07-23

计算机网络实验中DNS答案

该答案为计算机网络Ethereal Lab DNS的实验的答案。 里面的题目是英文的,解答是中文的,并且基本都贴出了wireshark中抓包的过程,有答案,多数问题有解释。

2018-07-23

计算机网络复习总结

包含计算机网络中运算层,网络层、链路层和局域网、无线网络和移动网络以及计算机网络中的安全的知识的总结。其中有多个题目的讲解,中英文对照。

2018-07-23

Infomation Technology ROJECT MANAGEMENT-7e

Preface xix Chapter 1 Introduction to Project Management 1 Chapter 2 The Project Management and Information Technology Context 43 Chapter 3 The Project Management Process Groups: A Case Study 81 Chapter 4 Project Integration Management 139 Chapter 5 Project Scope Management 187 Chapter 6 Project Time Management 225 Chapter 7 Project Cost Management 271 Chapter 8 Project Quality Management 311 Chapter 9 Project Human Resource Management 359 Chapter 10 Project Communications Management 405 Chapter 11 Project Risk Management 439 Copyright 2012 Cengage Learning. All Rights Reserved. May not be copied, scanned, or duplicated, in whole or in Chapter 12 Project Procurement Management 479 Chapter 13 Project Stakeholder Management 509 Preface xix Chapter 1 Introduction to Project Management 1 Introduction 2 What Is a Project? 4 Examples of IT Projects 4 Project Attributes 6 Project Constraints 7 What Is Project Management? 9 Project Stakeholders 10 Project Management Knowledge Areas 11 Project Management Tools and Techniques 12 Project Success 14 Program and Project Portfolio Management 16 Programs 17 Project Portfolio Management 17 The Role of the Project Manager 21 Project Manager Job Description 21 Suggested Skills for Project Managers 22 Importance of People Skills and Leadership Skills 24 Careers for IT Project Managers 25 The Project Management Profession 26 History of Project Management 26 The Project Management Institute 30 Project Management Certification 30 Ethics in Project Management 32 Project Management Software 33 Chapter Summary 36 Quick Quiz 37 Quick Quiz Answers 38 Discussion Questions 38 Exercises 39 Key Terms 40 End Notes 41

2018-07-23

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除