码迷,mamicode.com
首页 > 其他好文 > 日排行
VMware共享文件夹遇到的问题
我现在Linux下程序的开发模式是:用VS2010编写代码(IDE太好用了),然后切换到VMware虚拟机下执行make命令编译因为使用了VMware的文件夹共享功能,所以源文件只需要一份拷贝现在有个问题,Linux下访问过某目录后,如果Windows在该目录下创建了新文件,那这个新文件在Linux...
分类:其他好文   时间:2014-05-15 20:38:34    阅读次数:367
白屏查到原因了
白屏查到原因了html的问题。body之前文件过大把body前的代码移到body里。也可以加快网页加载速度。
分类:其他好文   时间:2014-05-15 18:08:46    阅读次数:177
log4j
Log4J的配置文件(Configuration File)就是用来设置记录器的级别、存放器和布局的,它可接key=value格式的设置或xml格式的设置信息。通过配置,可以创建出Log4J的运行环境。1. 配置文件Log4J配置文件的基本格式如下:#配置根Loggerlog4j.rootLogge...
分类:其他好文   时间:2014-05-15 18:06:51    阅读次数:233
链表程序实现
在这里实现了带头结点的链表,包含插入,删除,查询,清空链表一系列功能#includeusing namespace std;class LinkList{ char *elem; LinkList *next; static int length;public: LinkList(char *e) ...
分类:其他好文   时间:2014-05-15 18:05:31    阅读次数:271
hust 1039 Telephone Lines
题目描述Farmer John wants to set up a telephone line at his farm. Unfortunately, the phone company is uncooperative, so he needs to pay for some of the ca...
分类:其他好文   时间:2014-05-15 18:03:37    阅读次数:292
关于Assembly.LoadFrom和Assembly.LoadFile的区别
区别:1、Assembly.LoadFile只载入相应的dll文件,比如Assembly.LoadFile("a.dll"),则载入a.dll,假如a.dll中引用了b.dll的话,b.dll并不会被载入。Assembly.LoadFrom则不一样,它会载入dll文件及其引用的其他dll,比如上面的...
分类:其他好文   时间:2014-05-15 18:02:16    阅读次数:176
织梦v5.7后台添加文章提交出现空白页面
织梦v5.7后台添加文章提交出现空白页面 本地搭建的服务器,然后下载源代码的模板文件,但是,在本地安装后,却不能够在织梦后台栏目添加文章,添加后提交页面显示空白,查看文章状态显示为“未生成”。 查看了很多网上的帖子,没有发现能解决此问题的;后台经过逆向反复查找,最终锁定问题出在了网站的art...
分类:其他好文   时间:2014-05-15 17:58:22    阅读次数:252
WCF入门教程(四)通过Host代码方式来承载服务
WCF承载的具体框图WCF承载的具体原理WCFHost承载的相关类型介绍,主要包括ServiceHost,ServiceEndpoint,Binding,ServiceDescription,以及ServiceMetadataBehavior
分类:其他好文   时间:2014-05-15 17:57:42    阅读次数:357
2014 Jordans will release the Carmine 6s on May 24
Because the 2014 may be the 23rd Anniversary from theAir Jordan 6, In my opinion so many people are watching the following New Jordan 6s Releases - Ca...
分类:其他好文   时间:2014-05-15 17:55:41    阅读次数:366
C#运用反射调用其他程序集中的代码
加载程序集 AssMedicalAdvice = Assembly.LoadFrom(Path.Combine(Environment.CurrentDirectory, "Inscription.MedicalAdvice.Client.dll"));1.调用静态函数...
分类:其他好文   时间:2014-05-15 17:54:29    阅读次数:248
mining crushing equipment
we has introduced advanced technology from home and abroad, and combined specific industrial and mining conditions of related industries in China. Wit...
分类:其他好文   时间:2014-05-15 17:53:13    阅读次数:353
Linq:First FirstOrDefault
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Reflection;namespace TestConsole{ ...
分类:其他好文   时间:2014-05-15 17:07:04    阅读次数:187
信息写入记事本方法
/// /// 信息写入记事本 /// /// /// public static void Write(string text, string path) { try { DateTime newDat...
分类:其他好文   时间:2014-05-15 17:51:53    阅读次数:262
ftrace 使用方法
1. 追蹤Kernel function (以schedule()示範)先至/sys/kernel/debug/tracing# cat available_tracers確定有無 函式追蹤器(function)blk mmiotrace function_graph wakeup_rt wakeu...
分类:其他好文   时间:2014-05-15 17:50:00    阅读次数:339
Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters fo...
分类:其他好文   时间:2014-05-15 17:50:38    阅读次数:298
[LeetCode] [Add Binary 2012-04-02 ]
Given two binary strings, return their sum (also a binary string).For example, a = "11" b = "1" Return "100".string 的操作,短string补位。两个“0”会输出一个“00”,要特殊处理...
分类:其他好文   时间:2014-05-15 17:47:57    阅读次数:283
ICE使用记录
在使用ice中间件的过程中 如果A继承了 ****Disp_类 在使用A类的时候 ****Disp_类会浅表克隆该类出一个新的对象a 在调用重写的接口的时候是使用a 在主动调用A类的对象的时候使用的才是自己new的对象 所以如果想在A中添加成员变量,应该使用静态变量
分类:其他好文   时间:2014-05-15 17:48:39    阅读次数:278
A coroutine example: Streaming XML parsing using xml_parser
send($data)`. The sent data will then* be the result of the `yield` expression. Thus it can be received using a code like* `$data = yield;`.*/ /* What...
分类:其他好文   时间:2014-05-15 17:46:37    阅读次数:311
类的集成,对基类私有成员的访问
派生类不能直接访问基类的私有成员,若要访问必须使用基类的接口,即通过其成员函数。实现方法有如下两种:1.在基类的声明中增加保护成员,将基类中提供给派生类访问的私有成员定义为保护成员。2.将需要访问基类私有成员的派生类成员函数声明为友元。#includeusing namespace std;clas...
分类:其他好文   时间:2014-05-15 17:44:44    阅读次数:234
生活小插曲
14将近过了一半,忙里偷闲参加了一肚皮舞班已快结束,9月份的考试本月陆续开始上课,课余想温习一下web的知识,群里面有很多大牛,需要借鉴学习。多转园子,多看文章,多学习。
分类:其他好文   时间:2014-05-15 17:41:30    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!