VB调用VC dll的返回方式 第一种类型:数值传递注意:在VB中,默认变量传递方式为ByRef为地址,而传递值就是用ByVal,还要注意在C++中,int类型的变量是32位的,在VB中要用long型变量来配合。VC++部分: [cpp] view plaincopy extern "C" _dec ...
分类:
其他好文 时间:
2020-12-07 11:58:08
阅读次数:
4
HTML中定位属性之固定定位position:fixed; 定位属性:static :默认文本流 margin padding 从左到右 从上到下fixed:固定定位(脱离原来的文本)position: fixed;盒子的左边到浏览器可视窗口左边之间的距离left:20px;盒子的右边到浏览器可视窗 ...
分类:
其他好文 时间:
2020-12-07 11:56:45
阅读次数:
5
<style type="texts">.*{ margin:0; padding:0; }.father{ position:relative; width:600px; height:400px; background:#F96; margin:50px auto; } .box1,.box2, ...
分类:
其他好文 时间:
2020-12-05 11:10:03
阅读次数:
6
python数字数据是用来存储数值 数据类型是不允许改变的,这就意味着如果改变数字数据类型的值,将重新分配内存空间 Python 支持三种不同的数值类型: 整型(Int) - 通常被称为是整型或整数,是正或负整数,不带小数点。Python3 整型是没有限制大小的,可以当作 Long 类型使用,所以 ...
分类:
编程语言 时间:
2020-12-05 10:51:30
阅读次数:
5
Ubuntu12.04安装Tomcat71.下载Tomcat7打开Tomcat官网http://tomcat.apache.org,在左边的导航栏的“Download"中找到Tomcat7.0目录,点击后进入Tomcat7的页面,选择tar.gz这个文件类型,然后下载。2.解压文件sudotarzvxfapache-tomcat-7.0.70.tar.gz3.配置环境sudovi/etc
分类:
系统相关 时间:
2020-12-05 10:40:40
阅读次数:
10
java使用正则表达式的方法从json串儿,取想要的value值例子1:现有json:({"code":"200","json":["111"],"message":"true"})从中提取json的value数据。直接上代码如下:importjava.util.ArrayLis
分类:
编程语言 时间:
2020-12-05 10:33:25
阅读次数:
6
相对定位与绝对定位的练习 .father{ width:600px; height:400px; background:#F63; margin:50px auto; position:relative; } .box1,.box2,.box3,.box4{ width:80px; height:6 ...
分类:
Web程序 时间:
2020-12-04 11:47:25
阅读次数:
23
按位使用数据以及union 例如:typedef union tagData{ long x:2; long y:4; long data;}data_item,*pdata_item; 上述是一个联合体,联合体的对象用的空间是类型中占用内存最大的哪个,例如上例中data_item变量占用4个字节。 ...
分类:
其他好文 时间:
2020-12-04 11:18:07
阅读次数:
7
public class jiecheng { /** * 给定一个非负整数N,返回N!结果的末尾为0的数量 * @param args */ public static void main(String[] args) { thenumberof0(5); } /** * the number o ...
分类:
其他好文 时间:
2020-12-03 12:24:54
阅读次数:
14
<?phprequire_once(dirname(FILE).‘/inc/config.inc.php‘);header("Content-type:application/vnd.ms-excel");header("Content-Disposition:filename=volunteer.xls");echo"ID\
分类:
Web程序 时间:
2020-12-03 12:13:41
阅读次数:
10