搜索结果
找到约 126 项符合
static 的查询结果
按分类筛选
- 全部分类
- Java编程 (17)
- 书籍 (7)
- Java书籍 (6)
- matlab例程 (5)
- 其他书籍 (5)
- 单片机编程 (4)
- 数值算法/人工智能 (3)
- Linux/Unix编程 (3)
- 电子书籍 (3)
- 文件格式 (3)
- 软件设计/软件工程 (3)
- 嵌入式/单片机编程 (3)
- 压缩解压 (3)
- 加密解密 (3)
- 技术资料 (3)
- 技术书籍 (2)
- 其他 (2)
- uCOS (2)
- 通讯/手机编程 (2)
- Applet (2)
- VC书籍 (2)
- DSP编程 (2)
- 数据结构 (2)
- Windows CE (2)
- J2ME (2)
- 磁盘编程 (2)
- 编译器/解释器 (2)
- Internet/网络编程 (2)
- Jsp/Servlet (2)
- VHDL/FPGA/Verilog (2)
- JavaScript (2)
- 笔记 (2)
- 行业应用文档 (1)
- 传感与控制 (1)
- 数据库系统 (1)
- 其他行业 (1)
- 微处理器开发 (1)
- 技术管理 (1)
- 串口编程 (1)
- 网络 (1)
- 书籍源码 (1)
- 多国语言处理 (1)
- Ajax (1)
- 并行计算 (1)
- 数学计算 (1)
- 单片机开发 (1)
- SQL Server (1)
- 文章/文档 (1)
- 系统设计方案 (1)
- Delphi/CppBuilder (1)
- 存储器技术 (1)
- 源码 (1)
- 习题答案 (1)
数据结构 Visual 开发 希望对你们有帮助 public static int Rom(int n, int m)//双寄或双偶 { int count = 0 //第一排Y坐标上要几个
Visual 开发 希望对你们有帮助
public static int Rom(int n, int m)//双寄或双偶
{
int count = 0 //第一排Y坐标上要几个
if (n < m)
{
for (int i = 1 i <= n i = i + 2)
{
count++
}
}
else
{
for (int j = 1 j <= m j = j + 2)
{
count++
}
}
return count
} ...
加密解密 delphi实现加密算法 CRC32-Dym.................CRC32算法动态码表实现 CRC32-Static..............CRC32算法静态码表实现 MD
delphi实现加密算法
CRC32-Dym.................CRC32算法动态码表实现
\CRC32-Static..............CRC32算法静态码表实现
\MD5.......................MD5算法示例
\SHA.......................SHA算法示例
\DES.......................DES算法示例
\2DES......................双重DES算法示例
\3DES............. ...
软件设计/软件工程 飞机订票系统的 OO模型 包含use case modeling 2. static modeling 、。。等
飞机订票系统的 OO模型 包含use case modeling 2. static modeling 、。。等
Linux/Unix编程 cppcheck is a static C/C++ code analyzer that checks for memory leaks, mismatching allocation-deallo
cppcheck is a static C/C++ code analyzer that checks for memory leaks, mismatching allocation-deallocation, buffer overrun, and many more problems. Its goal is to produce no false positives.
Jsp/Servlet public class month1{ public static void main(String [] args){ int month = 10 int days = 0 s
public class month1{
public static void main(String [] args){
int month = 10
int days = 0
switch(month){
case 1:
days = 31
case 2:
days = 28
case 3:
days = 31
系统设计方案 busybox 配置错误的解决方法 2007-07-26 11:04 1. 如何編譯 2. 常見問題 - 如何將 busybox 編譯成 static linking - make menu
busybox 配置错误的解决方法
2007-07-26 11:04
1. 如何編譯
2. 常見問題
- 如何將 busybox 編譯成 static linking
- make menuconfig 出現下列錯誤
Java编程 String int 字符串常量池 包装类型 函数参数 值传递引用传递 的 内存分配例子——源码 代码段: public static void fun_ref (Ref_test ref_
String int 字符串常量池 包装类型 函数参数 值传递引用传递 的 内存分配例子——源码
代码段:
public static void fun_ref (Ref_test ref_out){
Ref_test ref_in=new Ref_test()
ref_in.s1="in"
//ref_out.s1="out"
ref_out=ref_in //漏洞!!ref_out 指向ref_in ,
//那么当函数退出后,ref_out就会自动指向 ...
VHDL/FPGA/Verilog RS_latch using vhdl, When using static gates as building blocks, the most fundamental latch is the
RS_latch using vhdl,
When using static gates as building blocks, the most fundamental latch is the simple SR latch, where S and R stand for set and reset. It can be constructed from a pair of cross-coupled NOR (Not OR) logic gates. The stored bit is present on the output marked Q.
Normally, in stor ...
Delphi/CppBuilder This is OpenCv1.0 converted for C++Builder6 static libraries arhive.
This is OpenCv1.0 converted for C++Builder6 static libraries arhive.
JavaScript 第一个Java程序 public class Practice { public static void main(String args[]) { System.out.print
第一个Java程序
public class Practice
{
public static void main(String args[])
{
System.out.println("**********************************")
System.out.println("** Practice makes perfect")
System.out.println("**********************************")
}
}