Skip to content

Latest commit

 

History

History
46 lines (36 loc) · 1.75 KB

day02.md

File metadata and controls

46 lines (36 loc) · 1.75 KB

语法

主谓宾补(Subject Verb Object Complement)

  • example

    • I find coding challenging.
    • The team considers the project successful.
  • 技术文档常见句子结构

    • The function makes the process efficient.
    • They elected him team leader.
  • 阅读《英语语法新思维》初级中关于 主谓宾补 句子结构部分

  • 尝试用 主谓宾补 造 5 个句子

    • I find debugging time-consuming.
    • The team considers the new framework reliable.
    • They elected him project manager.
    • We found the solution effective.

词汇

10 个编程高频词汇

  • Class(类)
    • A class defines a blueprint for objects. 类定义了对象的蓝图
  • Method(方法)
    • A method performs an action in a class. 方法在类中执行一个动作
  • Parameter(参数)
    • A parameter is a variable in a method definition. 参数是一个方法定义中的变量
  • Inheritance(继承)
    • Inheritance allows a class to inherit properties from another class. 继承允许一个类从另一个类继承属性.
  • Interface(接口)
    • An interface defines a contract for classes. 接口为类定义了一个契约
  • Exception(异常)
    • An exception indicates an error during execution. 异常表示执行过程中的错误
  • Library(库)
    • A library contains per-written code to use in programs. 库包含在程序中使用的预写代码
  • Compiler(编译器)
    • A compiler translates code from one language to another. 编译器将代码从一种语言翻译成另一种语言
  • Database(数据库)
    • A database stores and organizes data. 数据存储和组织数据
  • Version Control(版本控制)
    • Version control manages changes to source code. 版本控制管理源代码的更改