程序员思维学英语语法---介词详解

程序员思维学英语语法


单词-介词详解

1. 介词的定义

2. 介词的分类

3. 介词的用途

3.1 表空间的关系

3.2 表时间的关系


单词-介词详解

本章主要目的:了解介词定义及分类

1. 介词的定义

介词:表示词与词之间的关系

2. 介词的分类

  • 简单介词(in,on,with,by,for,at,about,under,of,to等)
  • 合成介词(into,within,throughout,inside,outside,without等)
  • 短语介词(according to,because of,by means of,in addition to,in front of, in spite of)多个词语构成一个短语,作用相当于介词
  • 分词介词(considering,regarding,respecting,including)有极少数介词的词尾是“-ing”,形似现在分词

3. 介词的用途

3.1 表空间的关系

这里借用常用的参考图

程序员思维学英语语法---介词详解_第1张图片

at表示在某个位置点

The begger is sitting at the corner.(那乞丐坐在角落里)

in表示处于某个范围或某个封闭空间

I live in London.(我住在伦敦)

on表示与某平面接触,在其上面

The author's name is on the cover of the book.(在书的封面上有作者的名字)

3.2 表时间的关系

程序员思维学英语语法---介词详解_第2张图片

at用于表示某一个时间点、节日

at dawn/at night/at noon(在黎明/在夜里/在中午)

in用于表示某年、某季节、某月、一天中的早中晚、某一段时间范围

in the afternoon(在下午这段期间)

on用于表示某天、某日的早午晚、节日

on Sunday(在周日)

3. 介词代码

/**
 * @Author: Wen-Xueliang
 * @Date: Created in 2019/5/29 22:25
 * @Description: 介词:表示词与词之间的关系
 */
public class Preposition extends PartOfSpeech {

    public String getAbbreviate() throws Exception {
        return "prep.";
    }
}

 

你可能感兴趣的:(程序员思维学英语语法---介词详解)