Chapter 4 Invitations——11
"Bella?" His voice shouldn't have been so familiar to me, as if I'd known the sound of it all my life rather than for just a few short weeks.
"Bella?"他的声音不应该对于我来说如此熟悉,好像我不是只认识这个声音短短几周,而是我的一生都已经记住了这个声音。
I turned slowly, unwillingly.
我不愿意的慢慢转过去。
I didn't want to feel what I knew I would feel when I looked at his too-perfect face.
我不想要感受到那种,当我看到他过于完美的脸庞的感觉。
My expression was wary when I finally turned to him; his expression was unreadable.
当我最终转向他的时候我的表情是警觉的;他的表情完全读不懂。
He didn't say anything.
他什么也没说。
"What? Are you speaking to me again?"
“什么?你又和我说话了?”
I finally asked, an unintentional note of petulance in my voice.
我最后问道,在我的声音中透露中着无意识的愤怒。
His lips twitched, fighting a smile. "No, not really," he admitted.
他的嘴唇抽搐着,挤出一个微笑,“不,没有”他承认道。
I closed my eyes and inhaled slowly through my nose, aware that I was gritting my teeth. He waited.
我闭上我的眼睛慢慢吸了一下鼻子,意识到我在磨我的牙齿。他等着。
"Then what do you want, Edward?" I asked, keeping my eyes closed; it was easier to talk to him coherently that way.
“Edward你到底想怎么样?”我闭着眼睛问道;以这样的方式很容易和他交流。
"I'm sorry." He sounded sincere. "I'm being very rude, I know. But it's better this way, really."
“我很抱歉”他的声音听上去很真诚。“我之前对你他鲁莽了,我知道。但是这是最好的方式了,真的。”
I opened my eyes.
我睁开了我的眼睛。
His face was very serious.
他脸上非常严肃。
Chapter 4 Invitations——11的更多相关文章
- Chapter 4 Invitations——28
"Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...
- Chapter 4 Invitations——27
"Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...
- Chapter 4 Invitations——26
"I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...
- Chapter 4 Invitations——25
"So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...
- Chapter 4 Invitations——24
"How do you do that?" I asked in amazed irritation. “你是怎么做到的?”我惊讶的问道. "Do what?" ...
- Chapter 4 Invitations——23
The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...
- Chapter 4 Invitations——22
"Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...
- Chapter 4 Invitations——21
"Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...
- Chapter 4 Invitations——20
Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...
随机推荐
- dotnet core 3.0 linux 部署小贴士
dotnet core 3.0 目前还是测试版,在linux下安装 sdk 需要有一些注意事项 1.下载url https://dotnet.microsoft.com/download/thank- ...
- C++输出
setiosflags 意思就是设置输入输出的标志iso::fixed 是操作符setiosflags 的参数之一,该参数指定的动作是以带小数点的形式表示浮点数,并且在允许的精度范围内尽可能的把数字移 ...
- REM——适合移动开发的自适应方案
文章目录 1.什么是REM 2.REM和EM的区别 3.手机端方案的特点 4.使用JS动态调整REM 5.REM与其他单位同时存在 1.什么是REM 先来认识几个常见单位: px:像素,这个大家都知道 ...
- Python数据科学手册
Python数据科学手册(高清版)PDF 百度网盘 链接:https://pan.baidu.com/s/1KurSdjNWiwMac3o3iLrzBg 提取码:qogy 复制这段内容后打开百度网盘手 ...
- django默认模板引擎和jinja2模板引擎
在使用中,大家会发现django默认模板引擎有很多局限性,最明显的就是四则运算.就只能加减,乘除都不支持.另外还有判断相等,不能直接if,要用ifequal.确实不太方便.还有一点,django默认模 ...
- web项目部署到服务器中浏览器中显示乱码
项目部署之后浏览器打开查看时页面乱码 这里可能需要修改一下tomcat配置文件,首先找到Tomcat的安装路径下的conf/server.xml文件,找到之后可以CTRL+F搜索如下的内容: < ...
- JavaScript递归
什么是递归? 在函数的内部调用自己 下面有一个例子,通过这个例子,大家就可以了解什么是递归 function fun(){ console.log(new Date()) //获取当前时间,并在控制台 ...
- JS中[object object]怎么取值
错误信息:本来是要显示JSON对象的 结果控制台打印了[object object] 需要做一个简单的转换,如下: var jsonData = JSON.stringify(data);// 转成 ...
- webpack2入门概念
webpack是一种JavaScript应用模块化打包工具,它配置起来简单易上手,因此很多企业工程化代码都使用它来打包.在具体介绍如何使用webpack之前,先来介绍下webpack的四个核心概念. ...
- 动态sql语句,非存储过程,如何判断某条数据是否存在,如果不存在就添加一条
已知一个表 table 里面有两个字段 A1 和 A2 如何用动态语句 判断 A1 = A , A2=B 的数据是否存在,如果不存在,就添加一条数据, A1 = A , A2 = B INSERT ...