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

程序员思维学英语语法


单词-介词详解

1. 介词的定义

2. 介词的分类

3. 介词的用途

3.1 表空间的关系

3.2 表时间的关系


单词-连接词详解

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

1. 连接词的定义

连接词:用于连接单词、短语、句子的词类

2. 连接词的分类

常用连接词

  • For -– You'd better put on your sweater, for it's rather cold outside. (你最好把毛衣穿上,外边相当冷。)
  • And – They gamble, and they smoke.( 他们赌博,也抽烟。)
  • Nor – They do not gamble, nor do they smoke.( 他们不赌博,也不抽烟。)
  • But – They gamble, but they don't smoke.( 他们赌博,但是不抽烟。)
  • Or – Every day they gamble, or they smoke.( 每天他们赌博或者抽烟。)
  • Yet – They gamble, yet they don't smoke.( 他们赌博,却不抽烟。)
  • So – He gambled well last night, so he smoked a cigar to celebrate.(他昨晚赌博很顺利,所以他抽了支雪茄庆祝)

3. 连接词代码

/**
 * @Author: Wen-Xueliang
 * @Date: Created in 2019/5/29 22:25
 * @Description: 连接词:用于连接单词、短语、句子的词类
 */
public class Conjunction extends PartOfSpeech {

    public static String FOR = "for";
    public static String AND = "and";
    public static String NOR = "nor";
    public static String BUT = "but";
    public static String OR = "or";
    public static String YET = "yet";
    public static String SO = "so";

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

 

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