码迷,mamicode.com
首页 >  
搜索关键字:static library    ( 54235个结果
WinDbg Command-Line Options
http://msdn.microsoft.com/zh-cn/library/ff561306(v=vs.85).aspxThe WinDbg command line uses the following syntax: windbg [ -server ServerTransport |...
分类:数据库   时间:2014-05-20 01:53:32    阅读次数:1101
ERROR: could not load library "D:/Program Files/PostgreSQL/9.3/lib/postgis-2.1.dll": Invalid access to memory location.
ERROR: could not load library "D:/Program Files/PostgreSQL/9.3/lib/postgis-2.1.dll": Invalid access to memory location.这个错误,参照:http://trac.osgeo.org/p...
分类:数据库   时间:2014-05-19 23:52:29    阅读次数:1776
常量池 栈 堆
Java内存分配:1. 寄存器:我们在程序中无法控制 2. 栈:存放基本类型的数据和对象的引用,但对象本身不存放在栈中,而是存放在堆中 3. 堆:存放用new产生的数据 4. 静态域:存放在对象中用static定义的静态成员 5. 常量池:存放常量 6. 非RAM存储:硬盘等永久存储空间 -----...
分类:其他好文   时间:2014-05-19 23:44:20    阅读次数:446
Android–SDcard文件读取和保存
背景 一些东西可以存在自己定义的文件里面,这个文件可以在手机中,可以在SD卡中,在这里就主要介绍一下在SD卡中的存储和读取吧~代码 public class save { public static void savefile2card(Context context,String usern...
分类:移动开发   时间:2014-05-19 22:36:15    阅读次数:456
Eclipse启动 报错[Failed to load the JNI shared library jvm.dll
准备要做java服务器,在安装开发环境时,启动Eclipse报错[Failed to load the JNI shared library jvm.dll]研究了下,造成错误的原因是由于eclipse与jdk的不一致造成的。我的开发环境是64位windows8 Pro,安装了64位jdk1.6,e...
分类:系统相关   时间:2014-05-19 21:50:36    阅读次数:440
WinDbg调试CPU占用高的问题 试验+实战 《第七篇》
一、High CPU试验 1、示例代码 static void Main(string[] args) { Console.Clear(); Console.WriteLine("到命令行下,切换到windbg目录,执行adp...
分类:数据库   时间:2014-05-19 21:44:35    阅读次数:578
c#学习4,继承类
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 继承{ class Program { static void Main(string[]...
分类:其他好文   时间:2014-05-19 21:40:41    阅读次数:347
在Win32控制台程序中使用CString
进入Project->Settings->General 下,在下拉框中选“Use MFC in a Static Library”(使用MFC做为静态链接库);然后添加头文件#include ,并且要放在其它头文件前。否则,会有#error : WINDOWS.H already included...
分类:Windows程序   时间:2014-05-19 20:42:44    阅读次数:317
c#学习5,处理异常
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 异常1{ class Program { static void Main(string[...
分类:其他好文   时间:2014-05-19 20:39:32    阅读次数:309
C# 过滤html标签
public static string checkStr(string html) { System.Text.RegularExpressions.Regex regex1 = new System.Text.RegularExpressions.Regex...
分类:Web程序   时间:2014-05-19 20:31:20    阅读次数:385
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!