码迷,mamicode.com
首页 >  
搜索关键字:step    ( 4105个结果
GDB回溯调试技术
使用调试器时最常用的功能就是step, next, continue,这几个调试命令都是“往下执行”的, 但是很多时候会有这种需求:你在调试的过程中多跳过了几步而错过中间过程,这时候不得不重头调试一遍,非常麻烦。而GDB从7.0版本开始支持反向调试功能,也就是允许你倒退着运行程序,或者说撤销程序执行的步骤从而会到以前的状态。   直观地来看,加入你正在使用GDB7.0以上版本的调试器并...
分类:数据库   时间:2014-06-20 11:11:54    阅读次数:337
LeetCode: Triangle [120]
【题目】 Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2], [3,4], [6,5,7], [4,1,8,3] ] The minimum path sum from top to...
分类:其他好文   时间:2014-06-08 17:52:45    阅读次数:235
Android布局文件的加载过程分析:Activity.setContentView()源码分析
大家都知道在Activity的onCreate()中调用Activity.setContent()方法可以加载布局文件以设置该Activity的显示界面。本文将从setContentView()的源码谈起,分析布局文件加载所涉及到的调用链。本文所用的源码为android-19. Step 1  、Activity.setContentView(intresId) public void s...
分类:移动开发   时间:2014-06-08 08:34:30    阅读次数:305
cocos2dx--- Node 绕Y轴旋转
step += 5; float ra = (float) CC_DEGREES_TO_RADIANS(step); float i = sinf(ra) * pNode->getCamera()->getZEye(); float j = cosf(ra) * pNode->getCamera()...
分类:其他好文   时间:2014-06-06 21:58:49    阅读次数:1731
[leetcode]Triangle @ Python
原题地址:https://oj.leetcode.com/problems/triangle/题意:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent n...
分类:编程语言   时间:2014-06-06 17:31:34    阅读次数:397
简单gdb的使用
这些东西都是参考《Linux C编程一站式学习》,在看这本书的gdb这块的时候,把这些总结性的东西记录下来方便以后复习,这些东西吧其实在一年前就已经看过了的,但是缺少笔记总是记不住 命令描述backtrace(bt)参考各级函数调用及参数的堆栈信息finish一般是配合step使用,当step跳入....
分类:数据库   时间:2014-06-05 18:59:42    阅读次数:311
从PSD到HTML,网页的实现
在学习完《From PSD to HTML: Building a Set of Website Designs Step by Step》之后,使我对网页的设计和实现有了更深入的认识,我逐渐少了那些恐惧感,为此,我尝试着实现了自己的第一个从PSD到HTML的实践。我使用的站点PSD文件是已经设计好...
分类:Web程序   时间:2014-06-05 18:22:49    阅读次数:284
Apache CXF 3.0: CDI 1.1 Support as Alternative to Spring--reference
WithApache CXF 3.0just being released a couple of weeks ago, the project makes yet another important step to fulfill theJAX-RS 2.0specification requir...
分类:编程语言   时间:2014-06-03 15:38:44    阅读次数:507
Iterative Algorithm
An iterative algorithm takes one step at a time, ensuring that each step makes progress while maitining the loop invariant.A paradigm shift:View an al...
分类:其他好文   时间:2014-06-02 19:20:20    阅读次数:286
Learning, step by step
Maveninstallartifactmvninstall:install-file-DgroupId=gemfire-DartifactId=gemfire-Dversion=6.0.1-Dpackaging=jar-Dfile=F:\gemfire-6.0.1.jarDefineaEnumtypepublicenumUserInfoCacheTypeE{ ACTIVE("ACTIVE"),NOT_ACTIVE("NOTACTIVE"); privateStringdescription; User..
分类:其他好文   时间:2014-06-01 16:43:28    阅读次数:228
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!