C
文章平均质量分 74
ITbeyong
这个作者很懒,什么都没留下…
展开
-
按位运算与按位存储之位结构
#include void main() { union { struct { unsigned short s1:3; unsigned short s2:3; unsigned short s3:3; }x; char c; } }v; v.c=100; printf("%d\n",v.x.s3); } A:4 B:0 C:3 D:6 答案是转载 2015-09-30 10:57:34 · 2847 阅读 · 0 评论 -
Java的native方法
1.什么是native方法? native 方法是一种Java方法,用Java语言声明,但其实现却是用非Java语言的程序语言(如C,C++)编写。 2.声明native方法的语法 public class IHaveNatives { native public void Native1( int x ) ; native static原创 2016-04-04 12:56:43 · 450 阅读 · 0 评论