设置EditPlus的编码格式为UTF-8:
Tools——>Preferences——>File——>Default encoding, 选择编码格式为UTF-8
分类:
其他好文 时间:
2014-07-22 23:12:57
阅读次数:
526
[share]path=/home/an/shareavailable=yesbrowse
able=yespublic=yeswritable=yessecurity = userusername map =
/etc/samba/smbusers[share]comment = Shared F...
分类:
其他好文 时间:
2014-07-22 23:11:34
阅读次数:
332
打开Eclipse,在主界面下Window->Preferences->General->Appearance->Colors and
Fonts,然后在右边展开框Basic->Text
Font,选择Edit,改变字体大小。这里设置的字体大小将应用于所有文件。在右边展开框中Java->Java E...
分类:
系统相关 时间:
2014-05-01 02:36:53
阅读次数:
565
这篇文章主要来源于:codeguru网站的一篇文章:A TR1 tutorial:smart
pointer (详细介绍了C++的智能指针,尤其是shared_ptr)。众所周知,在 TR1
之前,C++标准库中的智能指针只有auto_ptr,但由于它的【排他所有权模式】(exclusive own...
分类:
编程语言 时间:
2014-04-30 18:01:06
阅读次数:
478
happens-beforerelation on memory operations
such as reads and writes of shared variables. The results of a write by one
thread are guaranteed to be .....
分类:
移动开发 时间:
2014-04-29 16:38:32
阅读次数:
511
Pat1063代码
题目描述:
Given two sets of integers, the similarity of the sets is defined to be Nc/Nt*100%, where Nc is the number of distinct common numbers shared by the two sets,
and Nt is the to...
分类:
其他好文 时间:
2014-04-29 13:44:20
阅读次数:
325
引用http://linux.chinaitlab.com/soft/864157.html欢迎进入Linux社区论坛,与200万技术人员互动交流
>>进入 一、创建动态链接库1、创建工程new->project->c++ project选择Shared
Library->Empty Projec....
分类:
系统相关 时间:
2014-04-29 11:15:47
阅读次数:
559
package com.szy.shared.activity;import
android.app.Activity;import android.content.Context;import
android.content.SharedPreferences;import android.con...
分类:
其他好文 时间:
2014-04-29 10:34:47
阅读次数:
407
说起共享内存,一般来说会让人想起下面一些方法:1、多线程。线程之间的内存都是共享的。更确切的说,属于同一进程的线程使用的是同一个地址空间,而不是在不同地址空间之间进行内存共享;2、父子进程间的内存共享。父进程以MAP_SHARED|MAP_ANONYMOUS选项mmap一块匿名内存,fork之后,其...
分类:
系统相关 时间:
2014-04-28 12:30:07
阅读次数:
720
由于静态库是不需要导出的,所以在写QT的前置声明的时候需要说明
#if defined(QT_SHARED)
#ifdef COMMONLIB
#define COMMONLIB_EXPORT Q_DECL_EXPORT
#else
#define COMMONLIB_EXPORT Q_DECL_IMPORT
#endif
#else
#ifdef COMMONLIB
#defi...
分类:
其他好文 时间:
2014-04-28 10:47:42
阅读次数:
374