自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 资源 (7)
  • 收藏
  • 关注

原创 Android平台的流媒体注意事项

Android平台的App可能会受到很多天生的限制,很多在pc不用考虑的问题,在这里需要多加注意,在2年左右的开发实践中,碰到了很多很多问题,大概的列一列,如果对各位程序员朋友有所帮助,倍感欣慰。 1.内存,大概会有一个限制,30M左右,当然这个好像可以改,但面向个人的恐怕很难搞,只能省着点用,尽可能的少加载到内存 2.java,gc,对于流媒体这种需要不停使用内存的应用来说,使用ja

2013-04-18 15:37:28 644

原创 Java语言相关知识点,面试中鲜有人能说明白的问题

1. gc?如何控制gc?编程时需要注意些什么?    gc无法控制,就算写finalize()方法也没用.不要频繁new,能复用的要复用,包括使用static 2. final如何使用?何时需要使用?用final修饰的变量能不能改变?    修饰类,修饰方法,修饰变量,基本类型不能改变值,对象类型不能改成其他对象,但能改变该对象的内容 3. java中socket的使用,如何非阻塞?

2013-04-18 15:05:43 611

原创 C++指针与引用的本质区别

//看如下例子:   int a = 0;              // int型变量a int *pI = &a;           // 指向int型的指针变量pI int& rI = a;            // int型的引用rI,引用的变量为a int& rT = *(int*)0x01;  // int型的引用rT,引用的内存地址为0x01   到了编译器,产生四

2010-08-13 10:26:00 996 1

Linux网络编程.pdf

好书一定要拿出来分享!没有经验的可以学到很多,有经验的可以进步很多!

2010-09-21

The C programming Language.chm

不用多做介绍了吧,英文版 The C programming Language By Brian W. Kernighan and Dennis M. Ritchie. Published by Prentice-Hall in 1988 ISBN 0-13-110362-8 (paperback) ISBN 0-13-110370-9 Contents Preface Preface to the first edition Introduction Chapter 1: A Tutorial Introduction Getting Started Variables and Arithmetic Expressions The for statement Symbolic Constants Character Input and Output File Copying Character Counting Line Counting Word Counting Arrays Functions Arguments - Call by Value Character Arrays External Variables and Scope Chapter 2: Types, Operators and Expressions Variable Names Data Types and Sizes Constants Declarations Arithmetic Operators Relational and Logical Operators Type Conversions Increment and Decrement Operators Bitwise Operators Assignment Operators and Expressions Conditional Expressions Precedence and Order of Evaluation Chapter 3: Control Flow Statements and Blocks If-Else Else-If Switch Loops - While and For Loops - Do-While Break and Continue Goto and labels Chapter 4: Functions and Program Structure Basics of Functions Functions Returning Non-integers External Variables Scope Rules Header Files Static Variables Register Variables Block Structure Initialization Recursion The C Preprocessor File Inclusion Macro Substitution Conditional Inclusion Chapter 5: Pointers and Arrays Pointers and Addresses Pointers and Function Arguments Pointers and Arrays Address Arithmetic Character Pointers and Functions Pointer Arrays; Pointers to Pointers Multi-dimensional Arrays Initialization of Pointer Arrays Pointers vs. Multi-dimensional Arrays Command-line Arguments Pointers to Functions Complicated Declarations Chapter 6: Structures Basics of Structures Structures and Functions Arrays of Structures Pointers to Structures Self-referential Structures Table Lookup Typedef Unions Bit-fields Chapter 7: Input and Output Standard Input and Output Formatted Output - printf Variable-length Argument Lists Formatted Input - Scanf File Access Error Handling - Stderr and Exit Line Input and Output Miscellaneous Functions String Operations Character Class Testing and Conversion Ungetc Command Execution Storage Management Mathematical Functions Random Number generation Chapter 8: The UNIX System Interface File Descriptors Low Level I/O - Read and Write Open, Creat, Close, Unlink Random Access - Lseek Example - An implementation of Fopen and Getc Example - Listing Directories Example - A Storage Allocator Appendix A: Reference Manual Introduction Lexical Conventions Syntax Notation Meaning of Identifiers Objects and Lvalues Conversions Expressions Declarations Statements External Declarations Scope and Linkage Preprocessor Grammar Appendix B: Standard Library Input and Output: <stdio.h> File Operations Formatted Output Formatted Input Character Input and Output Functions Direct Input and Output Functions File Positioning Functions Error Functions Character Class Tests: <ctype.h> String Functions: <string.h> Mathematical Functions: <math.h> Utility Functions: <stdlib.h> Diagnostics: <assert.h> Variable Argument Lists: <stdarg.h> Non-local Jumps: <setjmp.h> Signals: <signal.h> Date and Time Functions: <time.h> Implementation-defined Limits: <limits.h> and <float.h> Appendix C: Summary of Changes

2010-09-21

The C++ Programming Language.3rd.Ed.pdf

这个不用多做介绍了吧 C++之父的大作 作为工具书的话,相信没有比这个更好的了!

2010-06-13

C++程序设计(钱能第二版).pdf(part2)

大学的C++教材,相当不错,不是很简单,头一遍基本没什么感觉,需要多看几遍才能有所感觉,书中有些许错误,一般在例子程序里面,需要上机调试下。

2010-06-13

C++程序设计(钱能第二版).pdf(part1)

大学时的C++教科书,很不错,也有一定的难度,不是那么简单,或许头一遍下来一点感觉都没有,肯定需要多看几遍。书中有些许错误,发生在例子程序,但绝不影响学习。可以上机调试一下。

2010-06-13

linux command tutorial.pdf

linux命令手册 cat cd chmod chown cp ...

2010-06-13

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除