网站首页 站内搜索

搜索结果

查询Tags标签: Chapter,共有 65条记录
  • 蟒蛇书学习笔记——Chapter 09 Section 01 创建和使用类

    9.1 创建和使用类 9.1.1 创建Dog类根据Dog类创建的每个实例都将存储名字和年龄,我们赋予了每条小狗蹲下(sit( ))和打滚(roll_over( ))的能力: class Dog:"""一次模拟小狗的简单尝试"""def __init__(self, name, age):"""初…

    2022/2/13 23:46:35 人评论 次浏览
  • Essential C++ Chapter 6学习记录(6.1~6.5节的代码)

    #include<iostream> using namespace std;template <typename elemType> class BinaryTree;template <typename elemType> class BTnode;template <typename valType> class BTnode{friend class BinaryTree<valType>; public:BTnode(const…

    2022/1/18 1:04:06 人评论 次浏览
  • Essential C++ Chapter 6学习记录(6.1~6.5节的代码)

    #include<iostream> using namespace std;template <typename elemType> class BinaryTree;template <typename elemType> class BTnode;template <typename valType> class BTnode{friend class BinaryTree<valType>; public:BTnode(const…

    2022/1/18 1:04:06 人评论 次浏览
  • Chapter 2. The Structure of the Java Virtual Machine阅读笔记

    第二章. Java虚拟机的结构 这篇文章定义了一个抽象的java虚拟机。不包含任何的具体实现。 为了正确地实现一个java虚拟机,你只需要正确地解析class文件并且正确地执行文件定义的操作。不属于java虚拟机定义的实现细节将不必要地限制实现者的创造力。比如,运行时数据区的…

    2022/1/18 1:03:30 人评论 次浏览
  • Chapter 2. The Structure of the Java Virtual Machine阅读笔记

    第二章. Java虚拟机的结构 这篇文章定义了一个抽象的java虚拟机。不包含任何的具体实现。 为了正确地实现一个java虚拟机,你只需要正确地解析class文件并且正确地执行文件定义的操作。不属于java虚拟机定义的实现细节将不必要地限制实现者的创造力。比如,运行时数据区的…

    2022/1/18 1:03:30 人评论 次浏览
  • Study Notes of CS:APP (Chapter 2)

    Study Notes of CS:APP Part I Program Structure and ExecutionHow application programs are represented and executed. Chapter 2 Representing and Manipulating Information [22-01] Two-valued Signals versus Decimal Notation • Computers store and process…

    2022/1/16 6:05:33 人评论 次浏览
  • Study Notes of CS:APP (Chapter 2)

    Study Notes of CS:APP Part I Program Structure and ExecutionHow application programs are represented and executed. Chapter 2 Representing and Manipulating Information [22-01] Two-valued Signals versus Decimal Notation • Computers store and process…

    2022/1/16 6:05:33 人评论 次浏览
  • Study Notes of CS:APP (Chapter 1)

    Study Notes of CS:APP Resources [21-12] Official Material [22-01] • Textbooks • Randal E. Bryant and David R. OHalloron, Computer Systems: A Programmers Perspective, Third Edition, Pearson, 2016 • Courses • 15-213 Instances • 15-213/18-21…

    2022/1/16 6:04:33 人评论 次浏览
  • Study Notes of CS:APP (Chapter 1)

    Study Notes of CS:APP Resources [21-12] Official Material [22-01] • Textbooks • Randal E. Bryant and David R. OHalloron, Computer Systems: A Programmers Perspective, Third Edition, Pearson, 2016 • Courses • 15-213 Instances • 15-213/18-21…

    2022/1/16 6:04:33 人评论 次浏览
  • 深入理解linux虚拟内存管理--01 简介

    简介 英文原版书地址 https://www.kernel.org/doc/gorman/html/understand/understand001.html 使用内核版本 2.4.22 目录如下: Chapter 1 Introduction 1.1 Getting Started 1.2 Managing the Source 1.3 Browsing the Code 1.4 Reading the Code 1.5 Submitting Patche…

    2022/1/11 7:03:50 人评论 次浏览
  • 深入理解linux虚拟内存管理--01 简介

    简介 英文原版书地址 https://www.kernel.org/doc/gorman/html/understand/understand001.html 使用内核版本 2.4.22 目录如下: Chapter 1 Introduction 1.1 Getting Started 1.2 Managing the Source 1.3 Browsing the Code 1.4 Reading the Code 1.5 Submitting Patche…

    2022/1/11 7:03:50 人评论 次浏览
  • chapter会话及其会话技术

    Cookie 对象 Cookie 是一种会话技术,它用于将会话过程中的数据保存到用户的浏览器中,从而使浏览器和服务器可以更好地进行数据互动。接下来,本节将针对Cookie 进行详细的讲解。 服务器向客户端发送 Cookie 时,会在 HTTP 响应头字段中增加 Set-Cookie 相应头字段。格式…

    2022/1/5 23:33:53 人评论 次浏览
  • chapter会话及其会话技术

    Cookie 对象 Cookie 是一种会话技术,它用于将会话过程中的数据保存到用户的浏览器中,从而使浏览器和服务器可以更好地进行数据互动。接下来,本节将针对Cookie 进行详细的讲解。 服务器向客户端发送 Cookie 时,会在 HTTP 响应头字段中增加 Set-Cookie 相应头字段。格式…

    2022/1/5 23:33:53 人评论 次浏览
  • Chapter 12 类和动态内存分配

    本章内容包括:对类成员使用动态内存分配 隐式和显式复制构造函数 隐式和显式重载赋值运算符 在构造函数中使用new所必须完成的工作 使用静态类成员 将定位new运算符用于对象 使用指向对象的指针 实现队列抽象数据类型(ADT)12.1 动态内存和类 12.1.1 复习示例和静态类成员…

    2021/12/29 7:07:36 人评论 次浏览
  • Chapter 12 类和动态内存分配

    本章内容包括:对类成员使用动态内存分配 隐式和显式复制构造函数 隐式和显式重载赋值运算符 在构造函数中使用new所必须完成的工作 使用静态类成员 将定位new运算符用于对象 使用指向对象的指针 实现队列抽象数据类型(ADT)12.1 动态内存和类 12.1.1 复习示例和静态类成员…

    2021/12/29 7:07:36 人评论 次浏览
扫一扫关注最新编程教程