虚心花瓣

文章
3
资源
0
加入时间
4年2月16天

C语言篇八:库函数整理C89库函数(15个)

C89库函数(15个)1、<assert.h>2、<ctype.h>3、<errno.h>4、<float.h>5、<limits.h>6、<locale.h>7、<math.h>8、<setjmp.h>9、<signal.h>10、&lt

redis的操作 json对象实例

1.redis存储是:key value格式的数据,其中key都是字符串,value有5种不同的数据结构  value的数据结构:    1.字符串类型:string    2.哈希类型 hash :map格式    3.列表类型 list:linkedlist格式。支持重复元素    4.集合类型 set:不允许重复元素    5.有序集合类型 sortset:不允许重复...