Typesetting math: 100%

Vim 和 Gdb 学习笔记

Vim 和 Gdb 学习笔记

本文学习自 cbiancheng runoob 并有部分内容直接复制,甚至是转载?

Warning:本文由于输入法原因,有可能会把‘的’误打为‘到’

Vim

![vi-vim-cheat-sheet-sch](/home/hs-black/ 脚本/vi-vim-cheat-sheet-sch.gif)

命令模式

命令模式大部分命令都可以 num+command 表示多次重复运行 如 6dd 表示删除 6 行

编辑模式下 <esc> 进入

i 进入输入模式

x 删除当前字符

: 输入命令,称为底线命令模式

光标移动

h 或 向左箭头键(←) 光标向左移动一个字符
j 或 向下箭头键(↓) 光标向下移动一个字符
k 或 向上箭头键(↑) 光标向上移动一个字符
l 或 向右箭头键(→) 光标向右移动一个字符
[Ctrl] + [f] forward 屏幕『向下』移动一页,相当于 [Page Down]按键 (常用)
[Ctrl] + [b] back 屏幕『向上』移动一页,相当于 [Page Up] 按键 (常用)
[Ctrl] + [d] down 屏幕『向下』移动半页
[Ctrl] + [u] up 屏幕『向上』移动半页
0 或功能键[Home] 这是数字『 0 』:移动到这一行的最前面字符处 (常用)
$ 或功能键[End] 移动到这一行的最后面字符处(常用)
G 移动到这个档案的最后一行(常用)
nG n 为数字。移动到这个档案的第 n 行。例如 20G 则会移动到这个档案的第 20 行(可配合 :set nu)
gg 移动到这个档案的第一行,相当于 1G 啊! (常用)
n n 为数字。光标向下移动 n 行(常用)

搜索和替换

/word 向光标之下寻找一个名称为 word 的字符串。例如要在档案内搜寻 vbird 这个字符串,就输入 /vbird 即可! (常用)
?word 向光标之上寻找一个字符串名称为 word 的字符串。
n 这个 n 是英文按键。代表重复前一个搜寻的动作。举例来说, 如果刚刚我们执行 /vbird 去向下搜寻 vbird 这个字符串,则按下 n 后,会向下继续搜寻下一个名称为 vbird 的字符串。如果是执行 ?vbird 的话,那么按下 n 则会向上继续搜寻名称为 vbird 的字符串!
N 这个 N 是英文按键。与 n 刚好相反,为『反向』进行前一个搜寻动作。 例如 /vbird 后,按下 N 则表示『向上』搜寻 vbird 。

替换常用命令

:n1,n2s/w1/w2/g 表示从 n1 行到 n2 行替换

:%s/w1/w2/g 表示全文替换

:%s/w1/w2/g/gc 全文替换并询问每个是否取代

其他命令

x, X 在一行字当中,x 为向后删除一个字符 (相当于 [del] 按键),X 为向前删除一个字符(相当于 [backspace] 亦即是退格键) (常用)
nx n 为数字,连续向后删除 n 个字符。举例来说,我要连续删除 10 个字符, 『10x』。
dd 删除游标所在的那一整行(常用)
ndd n 为数字。删除光标所在的向下 n 行,例如 20dd 则是删除 20 行 (常用)
d1G 删除光标所在到第一行的所有数据
dG 删除光标所在到最后一行的所有数据
d$ 删除游标所在处,到该行的最后一个字符
d0 那个是数字的 0 ,删除游标所在处,到该行的最前面一个字符
yy 复制游标所在的那一行(常用)
nyy n 为数字。复制光标所在的向下 n 行,例如 20yy 则是复制 20 行(常用)
y1G 复制游标所在行到第一行的所有数据
yG 复制游标所在行到最后一行的所有数据
y0 复制光标所在的那个字符到该行行首的所有数据
y$ 复制光标所在的那个字符到该行行尾的所有数据
p, P p 为将已复制的数据在光标下一行贴上,P 则为贴在游标上一行! 举例来说,我目前光标在第 20 行,且已经复制了 10 行数据。则按下 p 后, 那 10 行数据会贴在原本的 20 行之后,亦即由 21 行开始贴。但如果是按下 P 呢? 那么原本的第 20 行会被推到变成 30 行。 (常用)
J 将光标所在行与下一行的数据结合成同一行
c 重复删除多个数据,例如向下删除 10 行,[ 10cj ]
u 复原前一个动作。(常用)
[Ctrl]+r 重做上一个动作。(常用)
. 不要怀疑!这就是小数点!意思是重复前一个动作的意思。 如果你想要重复删除、重复贴上等等动作,按下小数点『.』就好了! (常用)
i, I 进入输入模式(Insert mode): i 为『从目前光标所在处输入』, I 为『在目前所在行的第一个非空格符处开始输入』。 (常用)
a, A 进入输入模式(Insert mode): a 为『从目前光标所在的下一个字符处开始输入』, A 为『从光标所在行的最后一个字符处开始输入』。(常用)
o, O 进入输入模式(Insert mode): 这是英文字母 o 的大小写。o 为『在目前光标所在的下一行处输入新的一行』; O 为在目前光标所在处的上一行输入新的一行!(常用)
r, R 进入取代模式(Replace mode): r 只会取代光标所在的那一个字符一次;R会一直取代光标所在的文字,直到按下 ESC 为止;(常用)

vim 批量注释

Ctrl + v 进入块选择模式,然后移动光标选中你要注释的行,再按大写的 I 进入行首插入模式输入注释符号如 //#,输入完毕之后,按两下 ESCVim 会自动将你选中的所有行首都加上注释,保存退出完成注释。

取消注释:

Ctrl + v 进入块选择模式,选中你要删除的行首的注释符号,注意 // 要选中两个,选好之后按 d 即可删除注释,ESC 保存退出。

Gdb

Gdb 按回车键会复刻上一次命令

在 Vim 中用图形化界面显示 Gdb

安装命令:packadd termdebug

使用命令:Termdebug

中间的是输入输出窗口,上面是 gdb

编译

g++ a.cpp -o a -g

不要使用 O2 等优化。

导入文件

file afil a

常见命令

指令 作用
break(b) k 设置断点
run(r) 执行程序,在第一个断点处停
continue(c) 到下一个断点
next(n) 一行一行执行代码
print(p) x 打印变量值
list(l) k 显示 k 行附近源代码内容
quit(q) 终止调试

run(r) 命令

run 支持 run < hs.in > hs.out 表示从 hs.in 中读取,输出到 hs.out 中

break(b) 命令

b checkb 66 表示在 check 函数设置断点或在第 66 行设置

b x if condb 66 if val < 50 这个 nb 一些,x 指上面两种,只有cond 为 true 到时候在此暂停。

tb x (if cond) 和上面用法一样,但是是临时断点,即跳到这里一次后断点消失

rb 用正则表达式批量添加断点(对我没啥用)

watch 命令

当变量或表达式的值改变时,程序就会停止运行。

watch a+b+c

对于 a[10] 这个数组

watch a[0]watch a 分别表示 a[0] 这个值变化,和 a 整个数组只要有变化就会停下

watch pwatch *p 对于指针 p 也是有区别的,就是值改变和位置改变的区别

也可以使用条件断点,格式相同

捕捉断点

对 OI 没啥用

条件断点(condition 命令)

condition bnum expression
conditoin bnum

bnum 表示目标断点的编号,expression 表示断点添加或修改的条件表达式,如果没有则为删除

ignore 命令

感觉没啥用,令断点失效若干次后恢复为普通断点。

ignore bnum count

单步调试

有三个命令 next,until,step

next

遇到函数时也会把一行一步走完,可以一下子跳 n 步 n count

step

next 的不同之处在于它会进入到函数到内部,比如 sort 也会。

until

until
until location

第一个可以跳过循环体到外面,不过只会在特定情况下发挥作用,只有在循环体尾部时,才会跳出,否则和 next 一样功能。

第二个就是跳到该行号停止

断点调试

综合前面的知识,我们新加两条命令

finish:结束当前正在执行的函数,并在跳出函数后暂停程序的执行

return val:奇数当前调用函数并返回指定值,到上一层函数调用处停止程序执行

finish 会快速到完成这个函数,而 return 则不会执行下面的函数而直接返回一个你键入到值

jump location:让程序从当前要执行到代码处,直接跳转到指定位置处继续执行后续的代码

查看变量或表达式的值

我们使用 print(p)display(disp) 命令

p 支持查看一次,而 disp 在每次暂停程序时都会打印一遍

可以以二进制或其他进制的形式查看这个值

display expr
display/fmt expr
/x 以十六进制的形式打印出整数。
/d 以有符号、十进制的形式打印出整数。
/u 以无符号、十进制的形式打印出整数。
/o 以八进制的形式打印出整数。
/t 以二进制的形式打印出整数。
/f 以浮点数的形式打印变量或表达式的值。
/c 以字符形式打印变量或表达式的值。

注意 display 和 /fmt 之间不应有空格

删除不想要的

undisplay num
delete display num

暂时禁用不想要的

disable display num

激活

enable display num

p 的高级用法

完整语法

p[options--][/fmt] expr

p -pretty on -- expr

复制过来力

options 参数 功 能
-address on|off 查看某一指针变量的值时,是否同时打印其占用的内存地址,默认值为 on。该选项等同于单独执行 set print address on|off 命令。
-array on|off 是否以便于阅读的格式输出数组中的元素,默认值为 off。该选项等同于单独执行 set printf array on|off 命令。
-array-indexes on|off 对于非字符类型数组,在打印数组中每个元素值的同时,是否同时显示每个元素对应的数组下标,默认值为 off。该选项等同于单独执行 set print array-indexes on|off 命令。
-pretty on|off 以便于阅读的格式打印某个结构体变量的值,默认值为 off。该选项等同于单独执行 set print pretty on|off 命令。

数组太大无法输出出来怎么办

我们可以部分输出

p first@len first 是首个元素的,len 是要看到元素个数

比如 p a[0]@20

众所周知,出了函数局部变量就不好看了,我们可以用 :: 来指定特定函数

thechildofCCF::child

删除断点或禁用断点

直接 delete(d) b bnumdis b bnum 即可

clear location 命令:删除一行或函数头的所有断点

delete 删除所有断点

enable [breakpoints] [num...]                        激活用 num... 参数指定的多个断点,如果不设定 num...,表示激活所有禁用的断点
enable [breakpoints] once num…                 临时激活以 num... 为编号的多个断点,但断点只能使用 1 次,之后会自动回到禁用状态
enable [breakpoints] count num...      临时激活以 num... 为编号的多个断点,断点可以使用 count 次,之后进入禁用状态
enable [breakpoints] delete num…               激活 num.. 为编号的多个断点,但断点只能使用 1 次,之后会被永久删除。

摘抄

posted @   Hs-black  阅读(370)  评论(0编辑  收藏  举报
编辑推荐:
· ASP.NET Core - 日志记录系统(二)
· .NET 依赖注入中的 Captive Dependency
· .NET Core 对象分配(Alloc)底层原理浅谈
· 聊一聊 C#异步 任务延续的三种底层玩法
· 敏捷开发:如何高效开每日站会
阅读排行:
· 终于决定:把自己家的能源管理系统开源了!
· C#实现 Winform 程序在系统托盘显示图标 & 开机自启动
· 了解 ASP.NET Core 中的中间件
· 实现windows下简单的自动化窗口管理
· 【C语言学习】——命令行编译运行 C 语言程序的完整流程
  1. 1 Battle Symphony Linkin Park
  2. 2 Immortals (End Credit Version) ["From "Big Hero 6”] Fall Out Boy
  3. 3 I Just Wanna Run The Downtown Fiction
  4. 4 What Makes You Beautiful One Direction
  5. 5 Me and My Broken Heart Push Baby
  6. 6 Demons Imagine Dragons
  7. 7 Counting Stars OneRepublic
  8. 8 Something Just Like This The Chainsmokers / Coldplay
  9. 9 Shots (Broiler Remix) Imagine Dragons / Broiler
  10. 10 Stranger Things (Alan Walker Remix) Kygo / OneRepublic / Alan Walker
  11. 11 Hymn For The Weekend(Remix) Alan Walker / Coldplay
  12. 12 Heavy Linkin Park / Kiiara
  13. 13 Payphone Maroon 5 / Wiz Khalifa
  14. 14 Perfect One Direction
  15. 15 The One The Chainsmokers
  16. 16 Starboy The Weeknd / Daft Punk
  17. 17 Whatever It Takes Imagine Dragons
  18. 18 Viva La Vida Coldplay
  19. 19 Renegades X Ambassadors
  20. 20 Hey, Soul Sister Train
  21. 21 Best of 2012: Payphone/Call Me Maybe/Wide Awake/Starship/We Are Young Anthem Lights
  22. 22 Champion Fall Out Boy
  23. 23 Can We Dance The Vamps
  24. 24 Secrets OneRepublic
  25. 25 Everglow Coldplay
  26. 26 Battles and Wastelands Neo Retros
  27. 27 Locked Away R. City / Adam Levine
  28. 28 Carry You Union J
  29. 29 Wherever I Go OneRepublic
  30. 30 The Phoenix Fall Out Boy
  31. 31 Best Day Of My Life American Authors
  32. 32 A Sky Full of Stars Coldplay
  33. 33 Love You Like the Movies Anthem Lights
  34. 34 Sugar Maroon 5
  35. 35 Up&Up (Radio Edit) Coldplay
  36. 36 Tired Alan Walker / Gavin James
  37. 37 Am I Wrong (Win & Woo Remix) Win and Woo / Nico & Vinz
  38. 38 Don't Let Me Down (Illenium Remix) ILLENIUM / The Chainsmokers / Daya
  39. 39 Kids OneRepublic
  40. 40 Radioactive Imagine Dragons
  41. 41 Centuries Fall Out Boy
  42. 42 Hall of Fame The Script / will.i.am
  43. 43 Pillow talk Auryn
  44. 44 Boston Augustana
  45. 45 Nervous (The Ooh Song) [Mark McCabe Remix] Gavin James / Mark McCabe
  46. 46 Cake By The Ocean DNCE
  47. 47 Heathens twenty one pilots
  48. 48 Thunder Imagine Dragons
  49. 49 Rich Love OneRepublic / SeeB
  50. 50 Closer The Chainsmokers / Halsey
  51. 51 There For You Martin Garrix / Troye Sivan
  52. 52 Unbelievable Owl City / Hanson
  53. 53 Patience Take That
  54. 54 A Head Full Of Dreams Coldplay
  55. 55 Wait Maroon 5 / A Boogie Wit da Hoodie
  56. 56 Stereo Hearts Gym Class Heroes / Adam Levine
  57. 57 Bikini Body Dawin / R. City
  58. 58 I'm the One Justin Bieber / Lil Wayne / Chance the Rapper / Quavo / DJ Khaled
  59. 59 Connection OneRepublic
  60. 60 Heart Like California Before You Exit
  61. 61 Tonight Tonight Hot Chelle Rae
  62. 62 Night Changes One Direction
  63. 63 See You Again Wiz Khalifa / Charlie Puth
  64. 64 You Future of Forestry
  65. 65 Romeo's Tune Pajaro Sunrise
  66. 66 Say Something A Great Big World
  67. 67 Taylor Swift Mash-Up Anthem Lights
  68. 68 Shine Years & Years
  69. 69 Won't Go Home Without You Maroon 5
  70. 70 All The Others The Coronas
  71. 71 Young And Menace Fall Out Boy
  72. 72 Future Looks Good OneRepublic
  73. 73 Up&Up (Freedo Remix) Coldplay / Freedo
  74. 74 I Wanna Know Alesso / Nico & Vinz
  75. 75 Slow Dance Night This Century
  76. 76 Play That Song Train
  77. 77 Rude MAGIC!
  78. 78 Lighters Eminem / Royce Da 5'9" / Bruno Mars
  79. 79 Don't You Worry Child Swedish House Mafia / John Martin
  80. 80 What Are You Waiting For? Nickelback
  81. 81 Shut up and Dance Walk The Moon
  82. 82 I Choose U Timeflies
  83. 83 Midnight City M83
  84. 84 No Vacancy OneRepublic
  85. 85 Grapevine Valentine Kingsfoil
  86. 86 Adventure of a Lifetime Coldplay
  87. 87 I Found A Girl The Vamps / Omi
  88. 88 Home One Direction
  89. 89 Wisdom The Guggenheim Grotto
  90. 90 Snow (Hey Oh) Red Hot Chili Peppers
  91. 91 Because Of You 98º
  92. 92 H.O.L.Y. Florida Georgia Line
  93. 93 Truly Madly Deeply Savage Garden
  94. 94 Sailboats Sky Sailing
  95. 95 I Really Like You Anthem Lights
  96. 96 Some Nights Fun.
  97. 97 Wherever You Go A Rocket to the Moon
  98. 98 One Day (Album Version) Emblem3
  99. 99 Fashion The Royal Concept
  100. 100 Ride twenty one pilots
  101. 101 You Don't Know Me Ofenbach
  102. 102 Lay It All on Me (feat. Ed Sheeran) Rudimental / Ed Sheeran
  103. 103 Beautiful Now Zedd / Jon Bellion
  104. 104 All We Know The Chainsmokers / Phoebe Ryan
  105. 105 Hymn For The Weekend Coldplay / Beyoncé
  106. 106 Not Today Imagine Dragons
  107. 107 Sitting Here In Silence (On My Own) Oasis
  108. 108 I Gave It All Aquilo
  109. 109 Oceans Deep Sons Of Day
  110. 110 Pedalo The Heart Strings
  111. 111 I Was Wrong Surfer Blood
  112. 112 90 Pompeya
  113. 113 7 Years Lukas Graham
  114. 114 Count On You Big Time Rush / Jordin Sparks
  115. 115 She Looks So Perfect (Mikey Demo Vocal) 5 Seconds of Summer
  116. 116 Good day Lucky Stroke
  117. 117 Moves Like Jagger Maroon 5 / Christina Aguilera
  118. 118 Love In A Box The Workday Release
  119. 119 Meteorite Years & Years
  120. 120 All Night The Vamps / Matoma
  121. 121 Special Six60
  122. 122 Dragostea Din Tei (Original Romanian Version) O-Zone
  123. 123 The Fox (What Does the Fox Say?) Ylvis
  124. 124 When We Come Alive Switchfoot
  125. 125 Sketch Plane Cam Kelley
  126. 126 Remember The Name (feat. Styles Of Beyond) Fort Minor / Styles of Beyond
  127. 127 New Divide Linkin Park
  128. 128 21 Guns Green Day
  129. 129 Disenchanted My Chemical Romance
  130. 130 Superheroes The Script
  131. 131 Roots Imagine Dragons
  132. 132 Juliet LMNT
  133. 133 Alone Together Fall Out Boy
  134. 134 Miss Jackson Panic! At The Disco / Lolo
  135. 135 Jailbreak AWOLNATION
  136. 136 U Make Me Wanna Blue
  137. 137 Sucker For Pain Lil Wayne / Wiz Khalifa / Imagine Dragons / Logic / Ty Dolla $ign / X Ambassadors
  138. 138 Somewhere Only We Know Keane
  139. 139 Boulevard Of Broken Dreams Green Day
  140. 140 In the End Black Veil Brides
  141. 141 I Just Wanna Live Good Charlotte
  142. 142 Just Dance Vanilla Sky
  143. 143 Come As You Are Nirvana
  144. 144 On My Own Ashes Remain
  145. 145 Supermassive Black Hole (Twilight Soundtrack Version) Muse
  146. 146 Everybody Knows I Love You (Unplugged) Lovebugs
  147. 147 Take Me As I Am FM Static
  148. 148 Hero Family of the Year
  149. 149 Turnin' Young Rising Sons
  150. 150 Ship In The Sand Marble Sounds
  151. 151 Cold November Neo Retros
  152. 152 Don't Look Back In Anger Oasis
  153. 153 I Do 911
  154. 154 Wake Me up When September Ends Green Day
  155. 155 Where Is the Love? Justin Timberlake / Black Eyed Peas
  156. 156 Nobody Compares One Direction
  157. 157 Run & Hide This Century
  158. 158 Lay You Down Easy MAGIC! / Sean Paul
  159. 159 Good Life OneRepublic
  160. 160 What I've Done Linkin Park
  161. 161 One More Night Maroon 5
  162. 162 We Are Young (feat. Janelle Monáe) Fun. / Janelle Monáe
  163. 163 Paris The Chainsmokers
  164. 164 Long, Long Way To Go Def Leppard
  165. 165 I Knew I Loved You Savage Garden
  166. 166 Lemon Tree Fool's Garden
  167. 167 Rhythm Of The Rain The Cascades
  168. 168 Billionaire Travie McCoy / Bruno Mars
  169. 169 Smile The Royal Concept
  170. 170 Stressed Out twenty one pilots
  171. 171 Believer Imagine Dragons
  172. 172 The Longest Wave Red Hot Chili Peppers
  173. 173 Dancehall Tribes
  174. 174 Infinity One Direction
  175. 175 The Saltwater Room Owl City / Breanne Düren
  176. 176 Pompeii Bastille
  177. 177 Sorry Jonas Brothers
  178. 178 Animals Maroon 5
  179. 179 Wait On Me Push Baby
  180. 180 Bang Bang Green Day
  181. 181 If Everyone Cared Nickelback
  182. 182 Don't Cry (Original) Guns N' Roses
  183. 183 Irresistible Fall Out Boy
  184. 184 Numb Linkin Park
  185. 185 Good Time Owl City / Carly Rae Jepsen
  186. 186 Bye Bye Bye *NSYNC
  187. 187 One Love Blue
  188. 188 Enough to Let Me Go Switchfoot
  189. 189 Stop And Stare OneRepublic
  190. 190 Good Goodbye Linkin Park / Pusha T / Stormzy
  191. 191 Levitate Imagine Dragons
  192. 192 She's Kinda Hot 5 Seconds of Summer
  193. 193 Still Waiting Sum 41
  194. 194 Every Breath You Take The Police
  195. 195 This Summer's Gonna Hurt Like a Mother****er (Explicit) Maroon 5
  196. 196 All The Right Moves OneRepublic
  197. 197 Better Than One The Score
  198. 198 King Years & Years
  199. 199 Roads Lawson
  200. 200 Best of 2015: Style / What Do You Mean / Uptown Funk / Love Me Like You Do / Watch Me / See You Again Anthem Lights
  201. 201 Can't Complain Relient K
  202. 202 First Time Feeling Dan + Shay
  203. 203 Yellow Coldplay
  204. 204 You’re Not Alone Owl City / Britt Nicole
  205. 205 Only Love Trademark
  206. 206 I Gotta Feeling Black Eyed Peas
  207. 207 Roses The Chainsmokers / ROZES
  208. 208 Drunk On Love The Wanted
  209. 209 Warriors Imagine Dragons
  210. 210 Faint Linkin Park
  211. 211 Intro Dreamtale
  212. 212 Intro The xx
  213. 213 Fell For You (Otis Mix) Green Day
  214. 214 Alpha Dog Fall Out Boy
  215. 215 Love Runs Out OneRepublic
  216. 216 It's My Life Bon Jovi
  217. 217 Take My Hand Simple Plan
  218. 218 Revolution Radio Green Day
  219. 219 If You Could See Me Now The Script
  220. 220 We Own The Night The Wanted
  221. 221 Live While We're Young One Direction
  222. 222 Go Big Or Go Home (Taylor Wise Remix) American Authors
  223. 223 Identity Kutless
  224. 224 Lovestruck The Vamps
  225. 225 She Will Be Loved Maroon 5
  226. 226 What A Catch, Donnie Fall Out Boy
  227. 227 Valentine's Day Linkin Park
  228. 228 When It's Time Green Day
  229. 229 Lake and Ocean The Coral Sea
  230. 230 The New Boy Mando Diao
  231. 231 Sight of the Sun Fun.
  232. 232 Tongue Tied Faber Drive
  233. 233 Gives You Hell The All-American Rejects
  234. 234 Between Courrier
  235. 235 Enchanted Owl City
  236. 236 Cancer twenty one pilots
  237. 237 The Sandman Neo Retros
  238. 238 The Sound Of Silence Simon & Garfunkel
  239. 239 Santa Monica Savage Garden
  240. 240 Fix You Coldplay
  241. 241 Breakeven The Script
  242. 242 Something I Need OneRepublic
  243. 243 Love Will Keep Us Alive Eagles
  244. 244 Unintended Muse
  245. 245 Indian Summer Stereophonics
  246. 246 My Personal Song The Bosshoss
  247. 247 Drag Me Down One Direction
  248. 248 Basket Case Green Day
  249. 249 Black Tattoo FM Static
  250. 250 It's Not Over Daughtry
  251. 251 Somebody To You The Vamps
  252. 252 Uptown Funk Mark Ronson / Bruno Mars
  253. 253 Get Lucky (Radio Edit) Daft Punk / Pharrell Williams / Nile Rodgers
  254. 254 This Love Maroon 5
  255. 255 True Romance Citizens!
  256. 256 Cabin Down Below The Royal Concept
  257. 257 Stuck in My Heart C21
  258. 258 They Don't Know About Us One Direction
  259. 259 Fireflies Owl City
  260. 260 The Scientist Coldplay
  261. 261 Misery Maroon 5
  262. 262 All Rise Blue
  263. 263 Wonderwall Oasis
  264. 264 Welcome to My Life Simple Plan
  265. 265 Knockin' On Heaven's Door Guns N' Roses
  266. 266 Let It Rain Gotthard
  267. 267 Carrie Europe
  268. 268 Hurricane 2000 Scorpions / Berliner Philharmoniker
  269. 269 Uma Thurman Fall Out Boy
  270. 270 The Hell Song Sum 41
  271. 271 Teenagers My Chemical Romance
  272. 272 Somewhere I Belong Linkin Park
  273. 273 Party Rock Anthem LMFAO / Lauren Bennett / GoonRock
  274. 274 I Love You All the Time (Play It Forward Campaign) Imagine Dragons
  275. 275 Steal My Girl One Direction
  276. 276 Ink Coldplay
  277. 277 Feelings Maroon 5
  278. 278 50 Ways to Say Goodbye Train
  279. 279 Don't Let Me Go The Click Five
  280. 280 Gold Owl City
  281. 281 Learn To Love Again (Radio Version) Lawson
  282. 282 Twin Skeleton's (Hotel In NYC) Fall Out Boy
  283. 283 I’m So Sorry Imagine Dragons
  284. 284 This Is Gospel Panic! At The Disco
  285. 285 Miracles Coldplay
  286. 286 Life Is Beautiful The Afters
  287. 287 Only After You Sixteen Cities
  288. 288 18 One Direction
  289. 289 Lucky Strike Maroon 5
  290. 290 Leave Out All The Rest Linkin Park
  291. 291 Just One Yesterday Fall Out Boy / Foxes
  292. 292 Life In Color OneRepublic
  293. 293 Creep Radiohead
  294. 294 Fool's Day Blur
  295. 295 With Or Without You U2
  296. 296 Into The Fire Thirteen Senses
  297. 297 Closer Travis
  298. 298 Six Degrees of Separation The Script
  299. 299 When Can I See You Again? Owl City
  300. 300 I Lived OneRepublic
  301. 301 Magic Coldplay
  302. 302 Lost Stars Maroon 5
  303. 303 One Thing One Direction
  304. 304 Save Rock And Roll Fall Out Boy / Elton John
  305. 305 Numb Encore Dr. Dre / 50 Cent / JAY-Z / Eminem / Linkin Park
  306. 306 Holiday Green Day
  307. 307 Drive By Train
  308. 308 Despre tine O-Zone
  309. 309 Love Is Easy McFly
  310. 310 Daylight Maroon 5
  311. 311 In the End Linkin Park
  312. 312 It's Time Imagine Dragons
  313. 313 If I Lose Myself OneRepublic
  314. 314 Never Say Never The Fray
  315. 315 Iridescent (Version 2) Linkin Park
  316. 316 The Man Who Can't Be Moved The Script
  317. 317 That's Why You Go Away Michael Learns To Rock
  318. 318 No Matter What Boyzone
  319. 319 Guilty Blue
  320. 320 History One Direction
  321. 321 Leaving California Maroon 5
  322. 322 Hotel California (2013 Remaster) Eagles
  323. 323 Take Me To Your Heart Michael Learns To Rock
  324. 324 Christmas Lights Coldplay
  325. 325 Verge Owl City / Aloe Blacc
  326. 326 I Bet My Life Imagine Dragons
  327. 327 As Long as You Love Me Backstreet Boys
  328. 328 I Want It That Way Backstreet Boys
  329. 329 Show Me the Meaning of Being Lonely Backstreet Boys
  330. 330 Everybody (Backstreet's Back) Backstreet Boys
  331. 331 Straight Through My Heart (Main Version) Backstreet Boys
  332. 332 My Love (Radio Edit) Westlife
  333. 333 Nothing's Gonna Change My Love For You Westlife
  334. 334 Seasons in the Sun Westlife
  335. 335 You Raise Me Up Westlife
  336. 336 Home Westlife
  337. 337 Beautiful World Westlife
  338. 338 Beautiful In White (Demo) Westlife
  339. 339 Too Hard To Say Goodbye Westlife
Take My Hand - Simple Plan
00:00 / 00:00
点击右上角即可分享
微信分享提示