内向书包

文章
10
资源
0
加入时间
2年10月21天

osal_msg_send

uint8 osal_msg_send( uint8 destination_task, uint8 *msg_ptr ){  if ( msg_ptr == NULL )    return ( INVALID_MSG_POINTER );  if ( destination_task >= tasksCnt )  {    osal_msg_deallocate

C# - 获取类中属性的名称

用反射控制的,不过获取属性名称的方法,用方法形式获取的,不知道消耗大不大using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;using Qxun.Framework.Utility;using System.Lin...

C++11新特性之三:nullptr

熟悉C++的童鞋都知道,为了避免“野指针”(即指针在首次使用之前没有进行初始化)的出现,我们声明一个指针后最好马上对其进行初始化操作。如果暂时不明确该指针指向哪个变量,则需要赋予NULL值。除了NULL之外,C++11新标准中又引入了nullptr来声明一个“空指针”,这样,我们就有下面三种方法来获取一个“空指针”,如下:int *p1 = NULL; int *p2 = 0;int *p