V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  lldong  ›  全部回复第 2 页 / 共 26 页
回复总数  509
1  2  3  4  5  6  7  8  9  10 ... 26  
2013-12-30 11:32:37 +08:00
回复了 4552886 创建的主题 问与答 大家拍照时都摆什么姿势,V字手势实在太俗
瓦肯举手礼
2013-11-26 16:55:37 +08:00
回复了 click 创建的主题 iPad iPad mini 2是否真的存在阴阳屏、色域低、残影等问题?
残影,不过不影响一般使用
2013-10-31 13:24:35 +08:00
回复了 XDA 创建的主题 VPS DigitalOcean 万圣节 Promo Code $10
DIVEIN10 测过也可以
2013-10-12 13:46:32 +08:00
回复了 qlqsh 创建的主题 iDev 类方法和实例方法的疑问。。。
第二个这种叫做 Shortcut Constructor Method

• What is the external interface for creating a new object when a Constructor Method is too wordy?

• Represent object creation as a message to one of the arguments to the Constructor Method. Add no more than three of these Shortcut Constructor Methods per system you develop.

摘自 "Smalltalk Best Practice Patterns"
2013-10-12 01:43:32 +08:00
回复了 kennedy32 创建的主题 PHP 觉得位运算符好高端好牛逼
2013-10-09 00:03:59 +08:00
回复了 tangqiaoboy 创建的主题 iDev 关于iOS程序的反汇编
2013-10-09 00:01:46 +08:00
回复了 tangqiaoboy 创建的主题 iDev 关于iOS程序的反汇编
Hopper 的反汇编效果不错,能生成伪代码,稍微好理解一些,不过离 Java 反汇编的效果还很远
Github 404 页面的设计师把它开源了 http://cameronmcefee.com/plax/
2013-10-03 22:13:06 +08:00
回复了 wzxjohn 创建的主题 macOS Mac 音效增强软件Boom团购意向统计
下个试试先
2013-10-03 21:06:13 +08:00
回复了 tioover 创建的主题 奇思妙想 C有没有像CoffeeScript 之于JavaScript 一样的语言?
cello +1
2013-09-14 04:14:48 +08:00
回复了 angelface 创建的主题 生活 怎么尽量减少小强。
刚在京东买了胶饵,这玩意真不便宜,明天给小强们进补,希望有效。。。
2013-08-30 13:03:51 +08:00
回复了 4pple 创建的主题 分享发现 这是你身边的生活吗,你会怎么想?
2013-08-14 22:19:14 +08:00
回复了 cdfmr 创建的主题 git 折腾了一晚上,终于把GitLab搭建好了
手动装好折腾,直接用bitnami的安装包了事
2013-07-31 20:25:09 +08:00
回复了 Livid 创建的主题 Scala Scala 的新网站
这是这么多语言的官网里面最漂亮的
可以跟一下Code School那个iOS开发系列,教程做的不错 http://www.codeschool.com/paths/ios
把project.pbxproj排序后再提交可以避免merge冲突,排序脚本在此:https://raw.github.com/WebKit/webkit/master/Tools/Scripts/sort-Xcode-project-file
2013-07-08 10:00:15 +08:00
回复了 breeswish 创建的主题 问与答 汇编语言中,push操作为什么是给指针做减法?
@breeswish 是之前看过的文章
2013-07-07 12:07:40 +08:00
回复了 breeswish 创建的主题 问与答 汇编语言中,push操作为什么是给指针做减法?
This enormous 64 bits worth of address space is divided up into two areas: The stack and the heap. The stack is an area set aside high in the address space (typically high, anyway; in practice it can be just about anywhere) for the use of subroutine calls and local variable storage. The stack always grows downward; as the amount of information on the stack increases, the address of the top of the stack decreases. On older systems with smaller memory models, it was possible for the stack to grow too far downward and collide with other areas, but while it's still technically possible for this to happen, other things would go wrong long before a heap collision (in particular, the stack would run off the edge of its allocated memory pages and cause a protection fault). The CPU has a few instructions specifically designed for manipulating the stack, though they often go unused in favor of more efficient methods in modern code. You can think of the stack as a moderately large chunk of memory allocated by the system at the launch of your program.

The heap effectively consists of every area of memory that is not the stack; memory from the heap is allocated at runtime by the system for the process' use. The heap contains the stack, in fact, though they are usually considered conceptually separate. All of your executable code is loaded into a section of the heap, as well as copies of any libraries your executable links to. Note: These are not actually copies, as it would be ridiculously inefficient to copy every library for every loaded process, but it's easier to just think of them as copies until you have a good grasp of virtual memory. Memory allocated by your process during its execution also comes from the heap.

http://www.mikeash.com/pyblog/friday-qa-2011-12-16-disassembling-the-assembly-part-1.html
University版大学的时候加过,不过需要由老师申请
1  2  3  4  5  6  7  8  9  10 ... 26  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2293 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 41ms · UTC 08:52 · PVG 16:52 · LAX 01:52 · JFK 04:52
Developed with CodeLauncher
♥ Do have faith in what you're doing.