码迷,mamicode.com
首页 >  
搜索关键字:sysgen variable    ( 3898个结果
@synthesis 使用的时候注意的地方
@implementation@synthesis age; // 就等于@synthesis age = age 得到同名的instance variable age 和-setAge, -age 这两个accessor.@end如果@implementation// no @synthesi.....
分类:其他好文   时间:2014-05-26 22:22:32    阅读次数:237
tomcat无法启动
在win7上明明已经安装了JDK1.6并设置好了JAVA_HOME,可偏偏Tomcat在启动过程中找不到。报错信息如下:Neither the JAVA_HOME nor the JRE_HOME environment variable is defined At least one of the...
分类:其他好文   时间:2014-05-26 13:14:11    阅读次数:355
Cocos2d-x 3.0 编译 eclipse+Win7+Android 篇
文档 Eclipse --> Windows--> Preferences ... 3. Set up Variables:  1. Path Variable `COCOS2DX`:  * Eclipse->Preferences->General->Workspace->**Linked Resources** * Click **New** button to add a Path...
分类:移动开发   时间:2014-05-24 17:54:57    阅读次数:282
about variables
局部变量(Local Variable),全局变量(global variable),变量共享;静态局部变量(static local variables),函数运行结束变量值不会消失,并且其它函数无法访问的变量;简单模拟登陆密码验证使用静态局部变量可以让函数产生的数据更长期更安全地存储,如果一个函...
分类:其他好文   时间:2014-05-23 11:59:35    阅读次数:278
#ifdef #endif #if #endif
c语言里所有以#开头的都是预编译指令,就是在正式编译之前,让编译器做一些预处理的工作。 #ifdef DEBUG printf("variable x has value = %d\n",x); #endif#if和#endif是配对的,叫做条件编译指令,如果满足#if后面的条件,就编译#if和#....
分类:其他好文   时间:2014-05-22 04:37:10    阅读次数:251
Bash String Manipulation Examples – Length, Substring, Find and Replace--reference
In bash shell, when you use a dollar sign followed by a variable name, shell expands the variable with its value. This feature of shell is called para...
分类:其他好文   时间:2014-05-21 18:32:32    阅读次数:332
如何往clob类型中插入一个超过10000 bytes 的字符串
如何往clob类型中插入一个超过10000 bytes 的字符串 You'll have to assign the value to a variable & use the variable to insert the data DECLARE     v_long_text CLOB; BEGIN     v_long_text := '...
分类:其他好文   时间:2014-05-21 09:14:36    阅读次数:225
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
我们先写一个简单的脚本,执行以后再解释各个变量的意义# touch variable# vi variable脚本内容如下:#!/bin/shecho "number:$#"echo "scname:$0"echo "first :$1"echo "second:$2"echo "argume:$@...
分类:系统相关   时间:2014-05-19 16:17:05    阅读次数:398
C语言中的Code,data的作用,Bit,sbit 的区别
1,SEGMENT_VARIABLE(USB_bcdDevice, U16, Code) = 0x0100;code /Code segment 的作用是告诉单片机,我定义的数据要放在ROM(程序存储区)里面,写入后就不能再更改,其实是相当与汇编里面的寻址MOVC因为C语言中没办法详细描述存入的是R...
分类:编程语言   时间:2014-05-19 08:26:20    阅读次数:4936
ERROR: function @ Ordinal 1883 missing !!! Please Check your SYSGEN variable !!!
ERROR:function@Ordinalxxxmissing今天新定制了一个OS,测试以前的应用程序,程序无法运行,查看串口信息有如下错误提示:ERROR:function@Ordinal1883missing!!!PleaseCheckyourSYSGENvariable!!!这通常是系统缺少某个组件导致的。查看\WINCE600\PUBLIC\COMMON\OAK\LIB\ARMV4I\..
分类:其他好文   时间:2014-05-15 19:08:38    阅读次数:259
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!