码迷,mamicode.com
首页 >  
搜索关键字:pointer    ( 2176个结果
iOS开发关于Block代码错误
本文永久地址为http://www.cnblogs.com/ChenYilong/p/4052362.html,转载请注明出处。iOS开发关于Block代码错误Incompatible block pointer types sending 'void (^)([ClassNameA]] *__st...
分类:移动开发   时间:2014-10-26 18:20:25    阅读次数:192
《CSAPP》读书杂记 - Chapter 2. Representing and Manipulating Information
1.代码:#include typedef unsigned char *byte_pointer;void show_bytes(byte_pointer start, int len){ int i; for(i = 0; i < len; i++) { printf(" %.2x"...
分类:移动开发   时间:2014-10-25 21:25:50    阅读次数:159
leetcode - Implement strStr()
Implement strStr(). Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack. class Solution { public: char *strStr(char *haystack, char *ne...
分类:其他好文   时间:2014-10-25 17:22:28    阅读次数:122
[原理分析]Linux下的栈溢出案例分析-GDB调试操练[4]
本系列的3介绍了现有的linux系统对栈的保护,在那种栈保护措施下,要修改SIP(saved instruction pointer)不可能;但是栈保护对象有限,对程序中的数据不一定都能保护到。本文就是探讨程序中有内存操作漏洞时,如何利用漏洞改写数据,达到控制的目的。...
分类:数据库   时间:2014-10-23 14:36:06    阅读次数:207
LeetCode Implement strStr()
Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack. 1 public class Solution {...
分类:其他好文   时间:2014-10-23 01:16:35    阅读次数:220
innerHTML应用--自动生成一个V字形(高级版)
一、效果图按钮可以多次点击。二、HTML+CSS代码。<style>.box{width:800px;margin:90pxauto;}.btn{padding:5px10px;color:#fff;background:#ff6600;cursor:pointer;font-size:16px;border-radius:5px;}.list{position:relative;margin-top:20px;}.listli{width:48px;heig..
分类:Web程序   时间:2014-10-21 19:58:42    阅读次数:823
DOM操作--自动生成100个li(变色版)
一、效果图。二、HTML+CSS代码。<style>.box{width:800px;margin:90pxauto;}.btn{padding:5px10px;color:#fff;background:#ff6600;cursor:pointer;font-size:16px;border-radius:5px;}.list{position:relative;margin-top:20px;}.listli{width:50px;height:50px;position..
分类:其他好文   时间:2014-10-21 19:58:22    阅读次数:258
leetcode第27题--Implement strStr()
Implement strStr().Returns a pointer to the first occurrence of needle in haystack, ornullif needle is not part of haystack.就是判断haystack中是否有needle,如果包...
分类:其他好文   时间:2014-10-21 00:54:00    阅读次数:151
用API函数抓取屏幕图像
procedure screenshot(shot: string);var dibH : hBitmap; bits : pointer; info : TBITMAPINFO; width,height : integer; screenDC,dibDC : hDC; f : file of b...
分类:Windows程序   时间:2014-10-21 00:49:27    阅读次数:383
innerHTML应用--自动生成一个V字形
一、效果图。二、HTML+CSS代码。<style>.box{width:800px;margin:90pxauto;}.btn{padding:5px10px;color:#fff;background:#ff6600;cursor:pointer;font-size:16px;border-radius:5px;}.list{position:relative;margin-top:20px;}.listli{width:50px;height:50px;position..
分类:Web程序   时间:2014-10-20 17:34:33    阅读次数:311
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!