Catch Up 朋友小聚 - 地道英语 - BBC Learning English BBC英语教学 - 爱思英语网
Catch Up 朋友小聚 - 地道英语 - BBC Learning English BBC英语教学 - 爱思英语网
Catch Up 朋友小聚
How often do you catch up with your friends?
Diarmuid: Hello and welcome to Authentic Real English from BBC Learning English. I'm Diarmuid and I'm here today with Feifei.Feifei: Hello Diarmuid, how are you?
Diarmuid: Actually, I'm a little tired. I was at my school reunion last night and I didn't get to bed until very late.
Feifei: 那你一定玩儿的很开心啦?
Diarmuid: Yes, it was great to catch up with my old classmates.
Feifei: What did you do with your old classmates?
Diarmuid: I caught up with my old classmates. To catch up - C.A.T.C.H. U.P. - catch up with someone means to find out what they have being doing since you last met.
Feifei: 当我们说 to catch up with someone 意思就是了解某人近况,自你上次和某个朋友通过话或见过面后他/她最近的生活,工作,情感等等方面的状况。那距你上次和同学 caught up 相隔了多久呀?
Diarmuid: Yes, it has been nearly five years since we caught up at our last reunion party.
Feifei: 我们来听一些例子教我们怎么使用 catch up.
Example
A: What are you doing this afternoon?
B: I'm catching up with my friend as I haven’t seen her in ages.
A: I think we need to have more regular meetings.
B: Yes, let’s try to catch up once a week.
Feifei: Did you find out anything interesting when you were catching up with your classmates?
Diarmuid: Well, I heard a rumour 传闻 that one of them won the lottery 中彩票了。
Feifei: Really?
Diarmuid: I don't know. I wasn't able to talk to him last night. But we have arranged a catch up next week. I will ask him then.
Feifei: 刚刚你说 a catch-up, 那么这个短语还有它的名词形式?
Diarmuid: A catch-up as a noun refers to a meeting.
Feifei: I see. What a useful word catch-up is. 别忘了可以可以登陆我们每天更新的网站学习更多的地道英语 www.bbcchina.com.cn.
Diarmuid: Bye.
Feifei: Bye.
Catch Up 朋友小聚 - 地道英语 - BBC Learning English BBC英语教学 - 爱思英语网的更多相关文章
- 做中学(Learning by Doing)之背单词-扇贝网推荐
做中学(Learning by Doing)之背单词-扇贝网推荐 看完杨贵福老师(博客,知乎专栏,豆瓣)的「继续背单词,8个月过去了」,我就有写这篇文章的冲动了,杨老师说: 有时候我会感觉非常后悔,如 ...
- Learning English with EnglishClass101.com---10 Habits of highly Effective Learners
you can find it on YouTube:Learning English with EnglishClass101.com 10 Habits of highly Effective L ...
- Learning English From Android Source Code:1
英语在软件行业的重要作用不言自明,尤其是做国际项目和写国际软件,好的英语表达是项目顺利进行的必要条件.纵观眼下的IT行业.可以流利的与国外客户英文口语交流的程序猿占比并非非常高.要想去国际接轨,语言这 ...
- Learning English From Android Source Code:2 Ampersand
这一次想把标点符号的英语表达总结一下,这些单词非常重要但easy被我们忽视.以我的经验,还是多认识几个.以备不时之需. 以下从"标点符号"開始: punctuation [英][ˌ ...
- [英语学习]王秒同学《21天TED英语精练团》
第一个分享: Chris Anderson的TED's secret to great public speaking(英音). There's no single formula for a gre ...
- 我正在学英语是用learning english还是用studying english?
学一门语言用 learn. study 表示深入研究,一般指在大学里.如果大学里的专业是英语,就可以说 study English. 1. If you study hard, you will le ...
- Second Day learning English
Today I have set my Microsoft word program, use it send documents to the blog site.
- 2016.09.14,英语,《Using English at Work》全书笔记
半个月时间,听完了ESLPod出品的<Using English at Work>,笔记和自己听的时候的备注列在下面.准备把每个语音里的快速阅读部分截取出来,放在手机里反复听. 下一阶段把 ...
- 【英语】Bingo口语笔记(5) - 英式和美式英语的发音区别
随机推荐
- ANTLR4权威參考手冊(一)
写在前面的话: 此文档是对伟大的Terence Parr的著作<the definitive antlr4 reference>的翻译本.致敬!欢迎转载,请注明原地址,请尊重劳动成果.翻译 ...
- ADOConnection数据库连接池
unit AdoconnectPool; interface uses Classes, Windows, SysUtils, ADODB, IniFiles, forms; type TADOCon ...
- ajax后台处理返回json值
public ActionForward xsearch(ActionMapping mapping, ActionForm form, HttpServletRequest request, Htt ...
- Spring2.5学习3.3_@Autowire注解实现手动装配
@Autowired默认按类型装配,假设我在personDao 字段上加了@Autowired注解,那么就会默认取personDao 字段的类型在Spring容器中寻找与这个类型匹配的bean,寻找到 ...
- Swift - 让StoryBoard设计视图,程序运行时都使用横屏形式
1,运行时横屏 将项目属性“General”->“DeviceOritentation”的Portrait复选框去掉 2,storyboard设计视图横屏 在storyboard中,单击中间界面 ...
- Swift - 点击输入框外部屏幕关闭虚拟键盘
我们如果把文本框的Return Key设置成Done,然后在storyboard中将文本框的Did End On Exit事件在代码里进行关联.同时关联代码里调用文本框的resignFirstResp ...
- 积累的VC编程小技巧之编辑框
1.如何让对话框中的编辑框接收对话框的消息 ////////////////////////////////////////////////// 如何让对话框中的CEdit控件类接收对话框的消息/// ...
- Swift - 选择框(UIPickerView)的用法
1,选择框可以让用户以滑动的方式选择值.示例如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 ...
- Spring4 MVC 多文件上传(图片并展示)
开始需要在pom.xml加入几个jar,分别是 <dependency> <groupId>commons-fileupload</groupId> <art ...
- 奔小康赚大钱 hdu 2255
奔小康赚大钱 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Sub ...
