"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的更多相关文章

  1. Chapter 4 Invitations——28

    "Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...

  2. Chapter 4 Invitations——27

    "Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...

  3. Chapter 4 Invitations——26

    "I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...

  4. Chapter 4 Invitations——25

    "So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...

  5. Chapter 4 Invitations——24

    "How do you do that?" I asked in amazed irritation. “你是怎么做到的?”我惊讶的问道. "Do what?" ...

  6. Chapter 4 Invitations——23

    The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...

  7. Chapter 4 Invitations——22

    "Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...

  8. Chapter 4 Invitations——21

    "Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...

  9. Chapter 4 Invitations——20

    Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...

随机推荐

  1. iOS异常捕获和处理

    2013年4月份整理的代码,仅作记录:   //先宏定义 //发布和未发布状态的日志切换 #ifdef DEBUG     //异常栈开关     #define STACK_KEY YES     ...

  2. python+matplotlib+绘制不同图标类型

    #==================================================================#首先需要导入两个文件import matplotlib.pypl ...

  3. vue 学习小记

    vue 中有 data() .computed.methods.beforeRouteLeave.created等 具体的: data():定义一些文件中需要用到的变量,data中带return,是使 ...

  4. Rabin-Karp ACM训练

    求解问题 寻找S中T出现的位置或次数.假设S的长度为n, T的长度为m, 通过枚举S长度为m的字串的hash值与T的hash值比较.此时使用滚动hash的优化使复杂度不为O(mn). 算法说明 滚动h ...

  5. 快排实现仿order by多字段排序

    class OrderBy(object): def __init__(self, sequence, *condition, **extra_condition): ""&quo ...

  6. cnn神经网络入门

    1.神经网络最基本的原理也是函数拟合,所以lose function就显得非常重要了,我们训练的目的之一就是减小损失函数,常用的损失函数参考:https://www.cnblogs.com/hypnu ...

  7. SpringAop注解实现日志的存储

    一.介绍 1.AOP的作用 在OOP中,正是这种分散在各处且与对象核心功能无关的代码(横切代码)的存在,使得模块复用难度增加.AOP则将封装好的对象剖开,找出其中对多个对象产生影响的公共行为,并将其封 ...

  8. js 压缩

    听到同事说没找到压缩js文件的,说软件压缩貌似有点问题,我自己就用nodejs练手般写了压缩文件的. 主要的思路就是,先通过前端上传js文件,然后服务器接收,然后引用uglifyjs 压缩,再返回文件 ...

  9. ChartControl设置坐标轴范围

    需求:有一条坐标轴是用来表示百分比的,所以刻度范围只能是从0 - 100: 解决方法:运行chatcontrol设计器,选中需要设置的轴,如下图: 设置Whole range 的最大最小值: 默认情况 ...

  10. WebGL绘制有宽度的线

    WebGL中有宽度的线一直都是初学者的一道门槛,因为在windows系统中底层的渲染接口都是D3D提供的,所以无论你的lineWidth设置为多少,最终绘制出来的只有一像素.即使在移动端可以设置有宽度 ...