自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (2)
  • 收藏
  • 关注

原创 给自己看的,

#include #include #include #include #include class Quote { public: virtual void sayHello() { std::cout << "Hello from base" << std::endl; } virtual void sayHi() { std::cout << "Hi from base" <<

2014-10-07 20:53:10 427

原创 C++ dynamic binding

#include #include class Quote { public: virtual void sayHello() { std::cout << "Hello from base" << std::endl; } virtual void sayHi() { std::cout << "Hi from base" << std::endl; } virtual void sa

2014-10-01 10:03:34 775

原创 Use linked list to create queue stack BST in C

Use linked list to create queue stack BST in C

2014-04-30 18:54:36 998

原创 C pointers and string

#include #include #include #include typedef int (* fptrOperation)(const char *, const char *); char *returnALiteral(int); size_t stringLength(const char *str); char *format(char *, size_t, const

2014-04-26 16:13:14 643

原创 Something about C pointers and arrays

#include #include void display(int*, int size); void display2DArray(int (*)[5], int nrow); void display2DArrayUnknownSize(int *, int, int);  void display3DArray(int (*)[2][5], int); in

2014-04-25 13:05:08 787

原创 OOP Essentials - Thinking in Java

1 --> Your program itself will provide services to the user, and it will accomplish this by using the services offered by other objects. Your goal is to produce a set of objects to provide the ideal s

2014-03-23 21:22:07 710

转载 Why String has been made immutable in Java?

Why String has been made immutable in Java? Though, performance is also a reason (assuming you are already aware of the internal String pool maintained for making sure that the same String object i

2014-03-20 22:08:36 700

转载 Can you override Static Methods in Java?

Can you override Static Methods in Java? Question: Can you override Static Methods in Java? Answer: Well... the answer is NO if you think from the perspective of how an o

2014-03-20 22:06:50 906

转载 Dynamic Binding vs Static Binding in Java

Difference between Dynamic Binding & Static Binding in Java Dynamic Binding or Late Binding Dynamic Binding refers to the case where compiler is not able to resolve the call and the binding is

2014-03-20 22:04:16 964

Python Tricks - A Buffet of Awesome Python Features

Amazon满分评价好书,成为Python大牛必备之书

2018-04-14

Foundations of Machine Learning

Foundations of Machine Learning MLer必备书籍

2013-03-16

空空如也

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

TA关注的人

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