6-1 Quantifiers
1 Quantifiers are used to describe the number or amount of something. Certain quantifiers are used with certain kinds of nouns.
a couple of a little any
a few little enough
few much some
many a great deal of a lot of
2 Countable Nouns and Uncontable
The nouns on the left side are examples of countable nouns. They can follow "a" or "an" in the singular. Adding "s" or "es" makes them plural. The nouns on the right side are examples of uncountable nouns. They cannot follow "a" or "an" and cannot be made plural.
Countable Uncountable
idea message inforamtion news
project coumputer advice support
report car money love
3 Quantifiers with Countable Nouns
a couple of usually means two
a few is approximately 2 - 4, it implies a small number
few without "a" is almost none, it implies a smaller number than expected
several is more than a few
many is a large number
These quantifiers describe the number of a countable noun. "A couple of" usually means two. "A few" is approximately 2 - 4. It implies a small number. "Few" without "a" is almost none. It implies a smaller number than expected. "Several" is more than a few. "Few" and "several" are usually not used in questions. "Many" is a large number.
4 Quantifiers with Uncountable Nouns
a little is a small amount
little without "a" is almost none, it implies less than expected
much is a large amount, and is usually used in questions ("how much") and negative statements ("not much")
a great deal of is a large amount
These quantifiers describe the amount of an uncountable noun. "A little" is a small amount. "Little" without "a" is almost none. It implies less than expected. "Little" isn't used in questions. "Much" is a large amount, and is usually used in questions ("how much") and negative statements ("not much"). "A great deal of" is a large amount.
5 Quantifiers with countable or uncountable Nouns
① any
Do you have any computers(furniture) in the conference room?
② enough
Do we have enough chairs(money) for lunch?
③ some
He has some ideas(information) about the new product.
④ a lot of
We've received a lot of messages(support) from the CEO.
These quantifiers can be used with either countable or uncountable nouns. "Any" is usually used only in questions or in negative statements. It means even the smallest number or amount. "Enough" is as many or as much as necessary. "Some" is an indefinite number or amount. "A lot of" is a large number or amount.
6 The quantifiers for question and neagtive statements.
I don't have any(some used here is wrong) money.
I won't make make a lot of or many(if several used here is wrong) changes.
7 Quantifiers that can't be used in Negative statement
a couple of several a little
a few some little
few
8 All of the expressions of quantity can be used without a noun if the meaning is clear. Note that in this case, "of" is not used after "a lot."
Do you have enough?
I have a lot.
Do you want some?
I don't want any.
6-1 Quantifiers的更多相关文章
- Discrete Mathematics and Its Applications | 1 CHAPTER The Foundations: Logic and Proofs | 1.4 Predicates and Quantifiers
The statements that describe valid input are known as preconditions and the conditions that the outp ...
- 正则表达式中的Quantifiers
?: Match an element zero or one time 例如: colou?r: color 或 colour 但不能是 colo2r *: Match an element zer ...
- 原生JS:RegExp对象详解
@import url(http://i.cnblogs.com/Load.ashx?type=style&file=SyntaxHighlighter.css);@import url(/c ...
- 《Java学习笔记(第8版)》学习指导
<Java学习笔记(第8版)>学习指导 目录 图书简况 学习指导 第一章 Java平台概论 第二章 从JDK到IDE 第三章 基础语法 第四章 认识对象 第五章 对象封装 第六章 继承与多 ...
- C#基础知识简单梳理
本文是转发博友的总结,方便自己以后随时温习: 1.值类型和引用类型 1.1堆和栈 简单的说值类型存放在堆栈上面,引用类型的数据存放在托管堆上面(它的引用地址却存放在堆栈上面)! 栈:它是一个内存数组, ...
- PHP正则表达式详解(一)
前言: 半年前我对正则表达式产生了兴趣,在网上查找过不少资料,看过不少的教程,最后在使用一个正则表达式工具RegexBuddy时,发现他的教程写的非常好,可以说是我目前见过最好的正则表达式教程.于是一 ...
- Thinking in Java——笔记(13)
Strings Immutable Strings Objects of the String class are immutable. Every method in the class that ...
- java中关于正则一些基础使用
希望能帮到有需要的朋友.-----转载请注明出处. 对于正则处理相关的知识,我一开始是从网上找资料配合使用Java API1.6的一个中文版进行学习,很感谢翻译这个版本的团队(机构)或者个人,很感谢那 ...
- SA: 情感分析资源(Corpus、Dictionary)
先主要摘自一篇中文Survey,http://wenku.baidu.com/view/0c33af946bec0975f465e277.html 4.2 情感分析的资源建设 4.2.1 情感分析 ...
随机推荐
- JDBC复习1
1.什么是JDBC JDBC是java数据库连接技术的简称(Java DataBase Connectivity) jdbc是接口,jdbc驱动才是接口的实现,负责连接各种不同的数据库.jdbc的AP ...
- ubuntu 安装 GCC 和 G++ C++ 开发环境
1.先安装 :sudo apt-get install build-essential 2.查看 gcc 版本 然后安装 统一版本的 g++ gcc --version gcc (Ubuntu/Lin ...
- centos7下安装docker(16.1docker跨主机存储--Rex-Ray)
一.Rex-Ray以standalone进程的方式运行在docker主机上,安装方法很简单:在docker1和docker2上运行如下命令: curl -sSL https://dl.bintray. ...
- P2690 接苹果(暴力搜索+记忆化)
思路: 建树:就是在每一分钟进行分枝,是原地不动,还是移动.然后,走完整个过程. 但是,我其实还是走了弯路,因为,最开始想的是剪枝,没有用记忆化搜索.但是,肯定是能用dp来做,啊啊啊啊阿,能用dp肯定 ...
- js 捕捉滚动条事件
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...
- EntityFramework Core并发导致显式插入主键问题
前言 之前讨论过EntityFramework Core中并发问题,按照官网所给并发冲突解决方案以为没有什么问题,但是在做单元测试时发现too young,too simple,下面我们一起来看看. ...
- Java之所有输入流输出流的分类
(1)字节输入流 基类:InputStream FileInputStream.ByteArrayInputStream.PipedInputStream.Buffered ...
- Python股票分析系列——数据整合.p7
欢迎来到Python for Finance教程系列的第7部分. 在之前的教程中,我们为整个标准普尔500强公司抓取了雅虎财经数据. 在本教程中,我们将把这些数据组合到一个DataFrame中. 到此 ...
- .Net Core 在 Linux-Centos上的部署实战教程(二)
上篇我们说了 如何在Linux上部署.net core 但是有心的同学会发现你关闭掉终端网站就不能访问了,这个原因是因为直接 dotnet GetConfigFile.dll --server.ur ...
- kafka环境搭建和使用(python API)
引言 上一篇文章了解了kafka的重要组件zookeeper,用来保存broker.consumer等相关信息,做到平滑扩展.这篇文章就实际操作部署下kafka,用几个简单的例子加深对kafka的理解 ...