码迷,mamicode.com
首页 >  
搜索关键字:cannotopen shared ob    ( 4084个结果
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
Android数据储存——SharedPreferences储存
SharedPreferences也是一种轻型的数据存储方式,它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息。其存储位置在/data/data//shared_prefs目录下。 读取SharedPreference  1.获取SharedPreference对象     /*      * name 打开的SharedPreference...
分类:移动开发   时间:2014-05-01 22:15:35    阅读次数:536
Effective Java 66 Synchronize access to shared mutable data
When multiple threads share mutable data, each thread that reads or writes the data must perform synchronization. Without synchronization, there is no...
分类:数据库   时间:2014-05-01 09:14:25    阅读次数:506
PlayerPrefs游戏存档
本地存储。相当于Flash里面的SharedObject。Android位置:机器自身存储的(非扩展卡)/data/data/appname/shared_prefs/{AppName}.xml,如果想查看需要Root。IOS位置:暂时还没找到。其他位置:参考https://docs.unity3d...
分类:其他好文   时间:2014-05-01 05:38:35    阅读次数:281
C、C++智能指针
这篇文章主要来源于:codeguru网站的一篇文章:A TR1 tutorial:smart pointer (详细介绍了C++的智能指针,尤其是shared_ptr)。众所周知,在 TR1 之前,C++标准库中的智能指针只有auto_ptr,但由于它的【排他所有权模式】(exclusive own...
分类:编程语言   时间:2014-04-30 18:01:06    阅读次数:478
Pat(Advanced Level)Practice--1063(Set Similarity)
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
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
QT静态库和动态库的导出
由于静态库是不需要导出的,所以在写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
[2012山东ACM省赛] Fruit Ninja II (三重积分,椭球体积)
解题思路: 高数上的三重积分。注意:PI的精度要大些,一开始用的3.1415926通不过,精度太小,后来百度3.1415926535898。还有浮点数的除法记得*1.0。 题目中的oc = ob这条信息特别关键。 代码: #include #include #include #include using namespace std; #define pi 3.1415...
分类:其他好文   时间:2014-04-27 21:18:00    阅读次数:387
4084条   上一页 1 ... 406 407 408 409 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!