misc about program
春呜
123
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
函数式编程初探
原文链接:http://www.ruanyifeng.com/blog/2012/04/functional_programming.html作者: 阮一峰日期: 2012年4月 6日诞生50多年之后,函数式编程(functional programming)开始获得越来越多的关注。不仅最古老的函数式语言Lisp重获青春,而且新的函数式语言层出不穷,比如Erlang、clojure、Scala、F...转载 2018-04-01 20:35:54 · 159 阅读 · 0 评论 -
关于First-class_function 的维基摘抄
摘自: https://en.wikipedia.org/wiki/First-class_functionIn computer science, a programming language is said to have first-class functions if it treats functions as first-class citizens. This means the l...转载 2018-05-12 10:35:09 · 410 阅读 · 0 评论 -
dlclose与线程的坑
当使用dlclose卸载某个so,但是so里头开了线程,必须把线程先退出,否则调用dlclose就会出现问题,会coredump原创 2018-12-14 17:42:25 · 2869 阅读 · 0 评论 -
程序员的自我修养摘要之二---编译与链接
Hello.c ----> hello汇编器:把高级语言变成汇编语言,分为前端和后端。前端负责产生机器无关的中间代码,后端把中间代码转化为目标机器代码。...原创 2015-01-03 22:23:42 · 503 阅读 · 0 评论 -
VS2010编译关于winnt.h的错误
今天在编译一个以前写的程序时,发现如下的一个错误:1>ClCompile:1> stdafx.cpp1>c:\program files (x86)\microsoft sdks\windows\v7.0a\include\winnt.h(290): error C2146: 语法错误: 缺少“;”(在标识符“PVOID64”的前面)1>c:\program ...转载 2019-04-05 00:22:13 · 4825 阅读 · 1 评论 -
Reentrant mutex(递归锁)
转载自: https://en.wikipedia.org/wiki/Reentrant_mutexIn computer science, the reentrant mutex (recursive mutex, recursive lock) is particular type of mutual exclusion (mutex) device that may be locked ...转载 2019-04-11 00:16:52 · 595 阅读 · 0 评论
分享