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. ORM版学员管理系统2

    学生信息管理 展示学生信息 URL部分 url(r'^student_list/', app01_views.student_list, name="student_list"), ...

  2. 从n个数里面选择m个数

    从n个数里面选择m个数 #include<iostream> #include<vector> using namespace std; vector<int> s ...

  3. -bash: _docker_machine_ps1: 未找到命令

    场景:在安装完docker-machine,设置docker-machine命令自动补齐的时候,出现以下错误: -bash: __docker_machine_ps1: 未找到命令 解决办法:在~/. ...

  4. ssm框架的整合搭建(一)

    一个转行菜鸟半年多工作的开始学习历程............ 我是自学,也是我的记录,我学习的见证,如果你有幸看见,不要吐槽,不足之处请指点,相互学习,谢谢!! 请一起共勉!!!!!!!! 使用技术: ...

  5. 008_Node中的require和import

    一.js的对象的解构赋值 https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuri ...

  6. hadoop学习笔记肆--元数据管理机制

    1.首先,认识几个名词 (1).NameNode中读.写.以及DataNode映射等信息叫做“元数据” ,NameNode元数据存放位置有.内存.fsimage.edits log三个位置. (2). ...

  7. 分区默认segment大小变化(64k—>8M)

    _partition_large_extents和_index_partition_large_extents 参考: http://www.xifenfei.com/2013/08/%E5%88%8 ...

  8. Docker网络和容器的通信

    Docker的本地网络实现其实就是利用了Linux上的网络命名空间和虚拟网络设备(特别是veth pair). 基本原理 直观上看,要实现网络通信,机器需要至少一个网络接口(物理接口或虚拟接口)与外界 ...

  9. 【vue】vue-router路径无法正确跳转

    具体描述:vue项目,npm run build时点击路由切换,第一次点击没问题,再点不会切换报错如下图 原因分析:vue-router配置路由,当代码分割和懒加载时,由于webpack配置不当,导致 ...

  10. Scala学习(九)练习

    文件正则表达式&练习 1. 编写一小段Scala代码,将某个文件中的行倒转顺序,将最后一行作为第一行,依此类推 程序代码: import scala.io.Source import java ...