解决:文件名是xyz,那你的这个类名也应该是xyz。
分类:
编程语言 时间:
2014-10-13 14:02:39
阅读次数:
205
使用的是nios ii 13 版本。直接在nios 软件上运行时程序能够执行,其中已经配置了stdin stderr stdout为jtag_uart。run configure 里面的byte stream device 自动选择jtag_uart。改变程序与stdin stdout stderr...
分类:
其他好文 时间:
2014-10-13 01:05:18
阅读次数:
390
// 基元类型 // 1.布尔型 bool a1 = true;// true、false,例如男女 // 2.整数类型 byte a2 = 0;// 0-255,颜色RGB,年龄,一个字节 sbyte a3 = 0;// -128到127 short a4 = ...
分类:
其他好文 时间:
2014-10-12 22:00:28
阅读次数:
199
类型 v?? void? 只能用于返回值类型 Z?? boolean B?? byte S?? short C?? char I??? int J??? long???????? 2个寄存器 F?? float D?? double? 2个寄存器 对象类型:Lpackage/name...
分类:
其他好文 时间:
2014-10-12 18:58:58
阅读次数:
206
1. bit 念"杯特"是二进制最小的单位,做个比喻 : 相当于一个灯泡 : 亮的时候表示 1, 不亮的时候表示 0 .= 1 = 0一个比特(bit) = 1灯泡.八个放在一排 表示一个byte(字节). 或者 或者.... 2. byte 念 "拜特"表示一个字节.定义 8bit = 1 ...
分类:
其他好文 时间:
2014-10-12 13:52:27
阅读次数:
326
Mayor's postersTime Limit: 1000MSMemory Limit: 65536KTotal Submissions: 43507Accepted: 12693DescriptionThe citizens of Bytetown, AB, could not stand t...
分类:
其他好文 时间:
2014-10-12 12:17:48
阅读次数:
120
Semantic Warnings
Warning
Message
-WCFString-literal
input conversion stopped due to an input byte that does not belong to the input codeset UTF-8
-WNSObject-attribute...
分类:
移动开发 时间:
2014-10-12 04:21:47
阅读次数:
340
近日须要不同的编码,关于上述编码,一直迷迷糊糊,查了些资料,总算大致了解了,以下全是从网上搜来的:1.ASCII和Ansi编码 字符内码(charcter code)指的是用来代表字符的内码.读者在输入和存储文档时都要使用内码,内码分为 单字节内码 -- Single-Byte charact...
分类:
其他好文 时间:
2014-10-11 16:36:55
阅读次数:
242
Windows 提供了Crypto API, 使用这些API, 我们可以比较轻松的实现Hash,签名等工作。MSDN上有很多信息,
http://technet.microsoft.com/zh-cn/library/aa382371
下面的例子是对一个给定的字符串进行hash计算,并且把hash值签名。给定的字符串如下:
BYTE *pbBuffer = (BYTE *)"The data...
考点1:
指令对应控制部分、数据流对应主存模块和处理器。
D
B
考点2:
CC
准确时间计算:t(第一条指令全部)+(n-1)*最长时间
估算时间:(n+2)*最长时间
考点3:
C
1字节byte=8位bit
注意是按字节编制
按位编址
按字编址(跟操作系统的位数有关)
的区别
考点4:
寻址方式:
A
考点5
C
考...
分类:
其他好文 时间:
2014-10-11 13:52:25
阅读次数:
181