自定义博客皮肤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)
  • 资源 (9)
  • 收藏
  • 关注

转载 char (*(*p[3])( int ))[5] 问题剖析

来自:csdnblog C指针声明解读之左右法则 C语言所有复杂的指针声明,都是由各种声明嵌套构成的。如何解读复杂指针声明呢?右左法则是一个既著名又常用的方法。不过,右左法则其实并不是C标准里面的内容,它是从C标准的声明规定中归纳出来的方法。C标准的声明规则,是用来解决如何创建声明的,而右左法则是用来解决如何辩识一个声明的,两者可以说是相反的。右左法则的英文原文是这样说的:   The ri

2017-12-13 19:57:53 2427 1

原创 指向“包含多个函数指针的数组“的指针

//指向“包含多个函数指针的数组“的指针 //形式:void (*(*PP)[2])(int X, int Y); //包含多个函数指针的数组-->怎样定义:数组中的每个元素都是一个函数指针 #include #include void AddFunc(int x, int y) { std::cout << (x + y) << std::endl; } void Minus(int x,

2017-12-13 19:26:05 336

原创 typedef 以及vector的应用

#include #include int Max(int, int); int AddPlus(int, int); int Minus(int, int); int main() { //define a int pointer of Func typedef int(*FuncPointer)(int,int); //重新定义函数指针类型 FuncPointer FPter[]

2017-12-13 19:23:35 1995

C+进阶与提高

C++ Class Improvment documents ,using for C++ primers who wants to improve C++ Coding

2018-02-03

R programming cook book

R programming cook book ,using for guiding primer users of R Programing.

2018-02-03

Matlab 有限元分析

Matlab 有限元分析高级教程,适合一定经验的编程者 。

2017-10-12

Expert Python Programming

Python is a dynamic programming language, used in a wide range of domains by programmers who find it simple, yet powerful. From the earliest version 15 years ago to the current one, it has constantly evolved with productivity and code readability in mind., Even if you find writing Python code easy, writing code that is efficient and easy to maintain and reuse is not so straightforward. This book will show you how to do just that: it will show you how Python development should be done. Python expert Tarek Ziadé takes you on a practical tour of Python application development, beginning with setting up the best development environment, and along the way looking at agile methodologies in Python, and applying proven object-oriented principles to your design.

2017-10-11

surfer12教程

A document of manual of Surfer

2015-06-06

空空如也

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

TA关注的人

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