1 prefer 使用 "prefer" 用来表明通常喜欢某件事甚于另一件事。说话者喜欢打高尔夫球更甚于喜欢打网球。"prefer" 的后面可以接名词("golf"),动名词("playing"),或不定式("to play")。

  Do you prefer golf or tennis?

  I prefer golf.

  I prefer playing golf.

  I prefer to play golf.

  2 Would prefer 使用 would prefer 来表明在某一特定情况下喜欢某样东西甚于另一样东西。would prefer 后接名词,动名词,或不定式。

  Would she prefer coffee or tea?

  She would prefer coffee. (这位女士平时可能不喜欢喝咖啡,但在这种情况下她想喝咖啡)

  She would prefer drinking coffee.

  She would prefer to drink coffee.

  3 Would rather 与 would prefer 意思相同,但是它后面只可以接动词原型,不能接名词,动名词,不定式。

  Would they rather visit Paris or New York City?

  They would rather visit Paris.

  4 would prefer not 与 would rather not 的否定式

  Would you rather eat spicy food or mild food?

  I would rather not eat spicy food.

  I would prefer not to eat spicy food.

  5 prefer 与 would prefer 疑问句

  Do you prefer golf?

  Yes I do. No, I don't

  

  Would she prefer coffee?

  Yes, she would.

  Would they rather visit Calcutta?

  No they wouldn't.

  Would they like to eat spicy food?

  No, they would rahter not.

  No, they would prefer not to.

  No, they wouldn't.

  6 在两个选项之间选择时,使用prefer...to... 或者 rather...than... 对于prefer...to...可以使用名词,动名词,不定式。 对于rather...than...使用动词原型。

  Which would you prefer?

  I would prefer eating at the hotel to going out.

  I would rather walk than dirve.

6 Prefer and Would rather的更多相关文章

  1. Effective Java 69 Prefer concurrency utilities to wait and notify

    Principle Use the higher-level concurrency utilities instead of wait and notify for easiness. Use Co ...

  2. tortoisesvn › prefer local prefer repository

    tortoisesvn › prefer local prefer repository

  3. Broker流量均衡 prefer reassign

    0.均衡流量的步骤 现在的kafka集群,只要遇到过weibo_common_act2 topic的节点在ZK中丢失,就要prefer一次流量,否则不均匀. 总结均衡流量的一般步骤: 通过hpm查询b ...

  4. Effective STL 43: Prefer algorithm calls to hand-written loops

    Effective STL 43: Prefer algorithm calls to hand-written loops */--> div.org-src-container { font ...

  5. Effective STL 学习笔记 Item 26: Prefer Iterator to reverse_iterator and const_rever_itertor

    Effective STL 学习笔记 Item 26: Prefer Iterator to reverse_iterator and const_rever_itertor */--> div ...

  6. netty底层是事件驱动的异步库 但是可以await或者sync(本质是future超时机制)同步返回 但是官方 Prefer addListener(GenericFutureListener) to await()

    io.netty.channel 摘自:https://netty.io/4.0/api/io/netty/channel/ChannelFuture.html Interface ChannelFu ...

  7. I prefer fcitx

    sudo add-apt-repository ppa:fcitx-team/nightly sudo apt-get update Then, you should install Fcitx.Fc ...

  8. Effective C++ -----条款20:宁以pass-by-reference-to-const替换pass-by-value Prefer pass-by-reference-to-const to pass-by-value

    尽量以pass-by-reference-to-const替换pass-by-value.前者通常比较高校,并可避免切割问题(slicing problem). 以上规则并不适用于内置类型,以及STL ...

  9. Effective Java 18 Prefer interfaces to abstract classes

    Feature Interface Abstract class Defining a type that permits multiple implementations Y Y Permitted ...

随机推荐

  1. 【Linux基础】Linux更改系统IP

    1.SUSE系统 (1)设置IP cd /etc/sysconfig/network/ vi ifcfg-eth0 BOOTPROTO='static'   #静态IPBROADCAST='192.1 ...

  2. jquery中prop()和attr()用法

    jquery1.6中新加了一个方法prop(),一直没用过它,官方解释只有一句话:获取在匹配的元素集中的第一个元素的属性值. 大家都知道有的浏览器只要写disabled,checked就可以了,而有的 ...

  3. dp P1103 书本整理 洛谷

    题目描述 Frank是一个非常喜爱整洁的人.他有一大堆书和一个书架,想要把书放在书架上.书架可以放下所有的书,所以Frank首先将书按高度顺序排列在书架上.但是Frank发现,由于很多书的宽度不同,所 ...

  4. vue快速入门

    Vue.js是当下很火的一个JavaScript MVVM库,它是以数据驱动和组件化的思想构建的.相比于Angular.js,Vue.js提供了更加简洁.更易于理解的API,使得我们能够快速地上手并使 ...

  5. UVA1471-Copying Books(二分答案)

    Problem UVA1471-Copying Books Accept: 2669  Submit: 22797Time Limit: 3000 mSec Problem Description B ...

  6. springBoot 搭建web项目(前后端分离,附项目源代码地址)

    springBoot 搭建web项目(前后端分离,附项目源代码地址)   概述 该项目包含springBoot-example-ui 和 springBoot-example,分别为前端与后端,前后端 ...

  7. Python requests上传文件demo

    #!/usr/bin/env python # -*- coding: utf-8 -*- import requests headers = {'uuid': '5cb572b7-c0a7-4d90 ...

  8. Jenkins以root用户运行的方法

    以centOS系统为例,记录下修改Jenkins以root用户运行的方法. 修改Jenkins配置文件 # 打开配置文件 vim /etc/sysconfig/jenkins # 修改$JENKINS ...

  9. 水题:P2799 国王的魔镜

    思路:简单模拟即可.判断一下是不是回文,是回文看长度是不是偶数.是偶数的话,说明又可能是回文.依次这样处理.但是只要长度为奇数则一定是原来的长度直接输出即可. #include<iostream ...

  10. 002_浅析python 中__name__ = '__main__' 的作用

    很多新手刚开始学习python的时候经常会看到python 中__name__ = \'__main__\' 这样的代码,可能很多新手一开始学习的时候都比较疑惑,python 中__name__ = ...