体贴鞋垫

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

C语言预处理指令#error

  在FreeRTOS的FreeRTOS.h文件中看到一句代码#ifndef configMINIMAL_STACK_SIZE #error Missing definition: configMINIMAL_STACK_SIZE must be defined in FreeRTOSConfig.h. configMINIMAL_STACK_SIZE defines the size (in words) of the stack allocated to the idle task

【Groovy手札】Groovy的List

Groovy采用逗号分隔一个列表(List)中的值,并且会转译成JDK中的java.util.List,并且Groovy的默认具体实现为java.util.ArrayList ,但是我们可以手动的转为其他实现。 def numbers = [1,2,3]                 (1)assert numbers instanceofLi

Linux基本文件权限

改变文件权限:chmod(change the permissions mode of a file)    格式1:chmod {ugoa}{+-=}{rwx}  文件        例:chmod  u+x,o-r  Demo.java    格式2:chmod  {mode=421}  文件              例:chmod  744  Demo.java    -R:改变目录下所有...