6-3 Articles(a, an, some, the)
1 Definite and Indifinite articles
Indefinite articles: a, an, some
Definite article: the
2 a and the
Did you see a moive last night? Yes I saw a comedy.
Did you see the moive last night? Yes it was excellent.
Note the difference between "a" and "the." When the first speaker uses "a," she is talking about any movie, not a specific movie. When she uses "the," she is talking about a specific movie that her listener is already familiar with.
3 Indefinite articles: a, an, some
① A
We need to hire a new salesperson.
Use "a" or "an" with indefinite nouns that are singular and countable. A noun is indefinite when you or your listener is not thinking of a specific person or thing. In this sentence, the speaker needs to hire someone, but he doesn't have anyone specific in mind. "Salesperson" is singular and countable.
I went to a moive last night.
The moive starred two of my favorite actors.
Use an indefinite article--"a," "an," or "some"--the first time you mention something. After the first mention, it becomes definite and you should use "the". In this example, the speaker uses "a" the first time she mentions "movie". After the first mention, she uses "the."
② An
a dollar an employee
a salary an umbrella
a university an honest person
Use "a" before consonant sounds and "an" before vowel sounds. Note that the sound, not the spelling, is important. "University" is spelled with a vowel, "u," but it begins with a consonant-sound, "y," so "a" is used. "Honest" is spelled with a consonant, "h," but it begins with a vowel-sound, "a," so "an" is used.
③ Some
I bought some vegetables.
I bought some meat.
How much did you buy?
Use "some" with indefinite nouns that are plural or uncountable. In this dialogue, the listener doesn't know specifically how many vegetables or how much meat the speaker bought. "Vegetables" is plural and "meat" is uncountable.
4 Definite article: the
I spoke to the chairman yesterday.
Use "the" with definite nouns. A noun is definite when you and your listener both know which person or thing you are talking about. In this sentence, both people know which chairman they're discussing. They've talked about that person before.
Did you see the moon last night?
I'd like to order the roast beef.
Use "the" with unique nouns. A noun is unique when there is only one. In these sentences, there is only one moon above the earth, and there is only one roast beef dish on the menu.
6-3 Articles(a, an, some, the)的更多相关文章
- http://www.sqlservercentral.com/articles/Failover+Clustered+Instance+(FCI)/92196/
http://www.sqlservercentral.com/articles/Failover+Clustered+Instance+(FCI)/92196/ http://blogs.msdn. ...
- https://yq.aliyun.com/articles/65125?spm=5176.100240.searchblog.18.afqQoU
https://yq.aliyun.com/articles/65125?spm=5176.100240.searchblog.18.afqQoU
- docker articles&videos
https://github.com/docker/docker https://channel9.msdn.com/Blogs/containers?page=2 https://blog.dock ...
- Articles Every Programmer Must Read
http://javarevisited.blogspot.sg/2014/05/10-articles-every-programmer-must-read.html Being a Java pr ...
- http://www.tuicool.com/articles/RzUzqei
http://www.tuicool.com/articles/RzUzqei http://www.cnblogs.com/piaolingzxh/archive/2015/01/01/419783 ...
- DB Query Analyzer 5.04 is released, 63 articles concerned have been published
DB Query Analyzer 5.04 is released, 63 articles concerned have been published DB QueryAnalyzer is pr ...
- DB Query Analyzer 6.04 is distributed, 78 articles concerned have been published
DB Query Analyzer 6.04 is distributed,78 articles concerned have been published DB Query Analyz ...
- Oracle PL/SQL Articles
我是搬运工....http://www.oracle-base.com/articles/plsql/articles-plsql.php Oracle 8i Oracle 9i Oracle 10g ...
- Oracle 11g Articles
发现一个比较有意思的网站,http://www.oracle-base.com/articles/11g/articles-11g.php Oracle 11g Articles Oracle Dat ...
- Miscellaneous Articles
标记一下,慢慢看 http://www.oracle-base.com/articles/misc/articles-misc.php Miscellaneous Articles DBA Deve ...
随机推荐
- C#实现窗体全屏
方法一:设置窗体属性 //程序启动路径,与生成程序的exe文件在同一目录下 public String exePath = Application.StartupPath; //定义窗体宽高 ; ; ...
- SpringMVC进行文件上传
进行文件上传前需要添加相应的依赖 在xml文件中进行相应的文件上传解析器的配置 注意:这里有个坑,因为没注意,再排查错误的时候花了一点时间.就是给bean的id一定要是. 否者就会报如下的错误:
- MongoDB初了解——用户权限
本文所述MongoDB版本为4.0.5,笔者对MongoDB刚接触,对各个版本的MongoDB不甚了解,本文不对该版本的MongoDB做特性介绍,所涉及命令也许对其余版本不适用. 因为目前有一个试验性 ...
- (一)MYSQL ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.10.210' (111) 解决方法
今天在测试MySQL的连接时候,发现连接不通过,并报错ERROR 2003 (HY000): Can't connect to mysql server on '192.168.10.210' (11 ...
- 理解sort()函数的排序原理
看了很多关于sort()函数的定义和解释还是不太清楚,尤其是初学者很容易看懵,这里讲讲自己是如何理解的. 首先,要理解sort()内部是利用递归进行冒泡排序的: 例如: var arr = [1, 5 ...
- 解决Windows下栈内存过小的问题
本地是windows环境 这个需要对你的IDE进行更改 拿Dev-C++来说 加入一条编译命令就好 -Wl,--stack= 评测机是Windows环境 很简单 在你的代码前面加一行 #pragma ...
- 通过ADB查看当前Activity
cmd命令中输入:adb shell dumpsys activity activities 在一连串的输出中找到Runing activities com.android.settings是包名. ...
- C# 动态生成word文档
本文以一个简单的小例子,简述利用C#语言开发word表格相关的知识,仅供学习分享使用,如有不足之处,还请指正. 在工程中引用word的动态库 在项目中,点击项目名称右键-->管理NuGet程序包 ...
- Android中将一个图片切割成多个图片
有种场景,我们想将一个图片切割成多个图片.比如我们在开发一个拼图的游戏,就首先要对图片进行切割. 以下是封装好的两个类,可以实现图片的切割.仅供参考和学习. 一个是ImagePiece类,此类保存了一 ...
- MySQL5.7参数log_timestamps
最近测试MySQL 5.7.21 Community Server这个版本的MySQL数据库时,发现其错误日志的时间跟系统当前时间不一致,后面检查发现日期时间格式都是UTC时间,查了一下相关资料,原 ...