C++ function pointers

2018-12-13
阅读 2 分钟
1.4k
Function pointers point to the address of the executable code of the function. You can use pointers to call functions and to pass functions as arguments to other functions.

C++ class

2018-12-12
阅读 32 分钟
2.1k
Core concepts of OOP(Object-oriented programming): abstraction, encapsulation, inheritance and polymorphism.

ES5-8 & Polyfilling & Transpilling

2018-10-18
阅读 5 分钟
1.5k
Array.prototype.includes(target) determines whether an array includes a certain element, returning True or False as appropriate.

Advanced JS Notebook

2018-10-12
阅读 18 分钟
1.8k
f(), ff()and console.log('a') will be push in the call stack one by one and be popped out in the reverse order (first in last out).

Learning Processing by examples

2018-10-12
阅读 7 分钟
2.2k
Based on p5.js examples.Click here for the differences between p5.js and processing.Check out p5.js references for more information.