码迷,mamicode.com
首页 >  
搜索关键字:while loading shared    ( 36422个结果
smb
[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
C、C++智能指针
这篇文章主要来源于:codeguru网站的一篇文章:A TR1 tutorial:smart pointer (详细介绍了C++的智能指针,尤其是shared_ptr)。众所周知,在 TR1 之前,C++标准库中的智能指针只有auto_ptr,但由于它的【排他所有权模式】(exclusive own...
分类:编程语言   时间:2014-04-30 18:01:06    阅读次数:478
输入与enter
#includeusing namespace std;int main(){ char a,b,c; while(scanf("%c%c%c",&a,&b,&c)!=EOF) { getchar(); cout<<a<<b<<c<<endl; } retur...
分类:其他好文   时间:2014-04-30 14:00:36    阅读次数:346
D3 API总览
学习外国的框架,零零星星和点点滴滴是不行的,还是要有一个高屋建瓴总揽全局的看法,所以就看看D3都有哪些方法。core:selection, transition, arrays, math, loading external resources, string formatting, csv for...
分类:Windows程序   时间:2014-04-30 13:54:23    阅读次数:656
C#常见算法题目
//冒泡排序publicclassbubblesorter{publicvoidsort(int[]list){inti,j,temp;booldone=false;j=1;while((jlist[i+1]){done=false;temp=list[i];list[i]=list[i+1];li...
分类:其他好文   时间:2014-04-29 17:21:45    阅读次数:429
九的余数
#include#include#include#include #includeusing namespace std;char c[1000005];int main(int argc, char* argv[]){ int n; scanf("%d", &n); while(n--) { .....
分类:其他好文   时间:2014-04-29 16:31:46    阅读次数:286
linux下Eclipse进行C编程时动态链接库的生成和使用
引用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
15 SharePreference
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
10个样式各异的CSS3 Loading加载动画
前几天我在园子里分享过2款很酷的CSS3 Loading加载动画,今天又有10个最新的Loading动画分享给大家,这些动画的样式都不一样,实现起来也并不难,你很容易把它们应用在项目中,先来看看效果图:你也可以在这里查看DEMO演示。下面我们来挑选几个比较典型的案例来分析一下代码。先来看看第一个案例...
分类:Web程序   时间:2014-04-29 10:17:46    阅读次数:517
成绩转换
#includeusing namespace std;int main(){ int N; //测试数据组数 cin>>N; while(N--) { int M; //百分制成绩 cin>>M; int a=M/10; ...
分类:其他好文   时间:2014-04-29 09:38:47    阅读次数:409
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!