-
-
0经核实吧主geral 未通过普通吧主考核。违反《百度贴吧吧主制度》第八章规定http://tieba.baidu.com/tb/system.html#cnt08 ,无法在建设 geral吧 内容上、言论导向上发挥应有的模范带头作用。故撤销其吧主管理权限。百度贴吧管理组
-
4int c; cin>>c; cout<<endl; HDC hDesktopDC = ::GetDC(NULL); HDC hTmpDC = CreateCompatibleDC(hDesktopDC); HBITMAP hBmp = CreateCompatibleBitmap(hDesktopDC, 140, 140); //500x500, 示例数据 SelectObject(hTmpDC, hBmp); BitBlt(hTmpDC, 770, 400, 140, 140, hDesktopDC, 0, 0, SRCCOPY); DeleteObject(hTmpDC); BITMAP bm; PBITMAPINFO bmpInf; if(GetObject(hBmp,sizeof(bm),&bm)==0) { ::ReleaseDC(NULL,hDesktopDC); return -1; } int nPaletteSize=0; if(bm.bmBitsPixel<16) nPaletteSize=(int)pow((double)2,bm.bmBitsPixel); bmpInf=(PBITMAPINFO)LocalAlloc(LPTR,sizeof(BITMAPINFOHEADER)+ sizeof(RGBQU
-
3https://pan.baidu.com/s/1milXJIw
-
0loglist = log.split('\n') 分割多行
-
28456rty
-
27http://pan.baidu.com/share/link?shareid=202857&uk=3744053966
-
9keyword: package,链表,box,类中类。 Q:打包之后怎么获取成员类对象的参数,构造函数怎么写比较好,不复制内存的前提下如果新建对象?调用成员类对象时怎样才能不用两层inline就直接读取其private数据?
-
1http://www.360doc.com/content/12/0401/13/3767901_199920102.shtml
-
3//console project without MFC #include "stdafx.h" #include <WinSock2.h> #include <ws2tcpip.h> #include <iostream> #pragma comment(lib,"ws2_32.lib") using std::cout; using std::endl; int _tmain(int argc, _TCHAR* argv[]) { WORD wVersionRequested; wVersionRequested = MAKEWORD(2, 2); LPWSADATA lpWSAData=new WSADATA(); if (WSAStartup(wVersionRequested,lpWSAData)!=0) { cout<<"startup fail"<<endl; return 1; } cout<<"start up ok"<<endl <<"version is: "<<lpWSAData->wVersion<<endl <<&qu
-
8http://blog.163.com/ac_bc/blog/static/6016475201181434423705/ 【TITLE】GetWindowLong说明及应用 “窗口类的封装,从全局窗口消息处理到窗口对象消息处理的映射方法: 对界面进行封装,一般都是一个窗口一个类,比如实现一个最基本的窗口类CMyWnd,你一定会把窗口过程作为这个类的成员函数,但是使用WINAPI创建窗口时必须注册类WNDCLASS,里面有个成员数据lpfnWndProc需要WNDPROC的函数指针,一般想法就是把窗口类的消息处理函数指针传过去,但是类成员函数除非是静态的
-
11[P0] Type=Normal Direction=LEFT Pin_Def=BATT Pin_Nb=Ae Pdt_65Pin=61 FP_CON1=56 FP_CON2=0 OS_Num=1,2 OS_PtType=Internal,0 OS_1=Short_Hat,0 OS1_Num=1,2 OS1_PtType=External,0 OS1_1=Switch,SW OS11_Num=4,0 OS11_1=Circle_Pin,157 OS11_2=Current_PCB,in3,out3 OS11_3=Circle_Pin,158 OS11_4=Circle_Pin,159 OS2_Num=5,0 OS2_1=Switch,SW OS2_2=Resistor,2.4k,1 OS2_3=LED,0 OS2_4=GND,0 OS2_5=Circle_Pin,127 [Part_Path] part_path=C:\Users\Administrator\Desktop\CC_PANEL\PART\
-
0http://wenku.baidu.com/view/3a1cc5eb172ded630b1cb6d9.html
-
7很多问题都能找到的: http://www.docin.com/p-568579957.html
-
0extern explict friend
-
11. 注意要把被赋值的对象里面的链表清除干净,不能单单pHead=0 while(pHead=pCurrent){ pHead=pHead->next; delete pCurrent; } 2. 有了1的代码之后,要注意一个特殊情况: a=a; 给自己赋值时,会造成把内部的链表全部清除,从而造成了空表的状态。 解决方法是进行比较: A& A::operator=(const A &a){ if(this=&a) return *this;//返回this指针地址。 …… }
-
0objectarx sdk Objectarx 程序是外部编译式的DLL 文件在编译器中编译在运行的cad程序中动态使用。Objectarx 提供cad 完整的对象结构底层函数接口很多cad 软件本身的许多新功能也是用Objectarx开发的。因为c是访问底层的语言直接编程要作很多计算机底层相关的设置因此objectarx提供开发包辅助工具条 在vs内通常也使用命令函数提示工具 Vaassist 安装cad 安装cad版本对应的开发编辑器 安装 sdk需要另外免费下载对应版本… ObjectARX 2008utilsObjARXWizvs工具条 vs_工具条上右键
-
2PIPE sys/types.h, sys/stat.h, unistd.h, fcntl.h, stdlib.h 起始,需要建立一个临时文件用于管道通信,比如tmp/myfifo,下简述为FIFO,即路径。 mkfifo(FIFO,mode_t); open(FIFO,mode_t); read(FIFO,buf,size); 读完结束记得注意unlink(FIFO)释放。 //以上是读的一边。 //接下来是写的一边: 写的时候注意 open(FIFO,mode_t|O_NONBLOCK) //nonblock 防止阻塞 write(FIFO,buf,size)//一般sizeof buf.
-
0fstream is used to make reading and writing with formation of the iostream. eg: ifstream in("path"); Ofcourse do not forget the namespace; vector is easy to remember for it is just need a type declare like: vector<int> v; and vector can be operated like an array, like v[10]=v[10]*2; the relative function is shown like : push_back; push_front; insert; size; etc.
-
0过了两天总算基本搞定。 刚弄完TCP,趁热先说,UDP得简单复习下: 基于上面的图写就没错了,但是这两天一直出错的点如下: 1. addr的三个元素没有完整赋值,比如server端少写了port,client端少写了AF_INET 2. client端使用fd作为socket from socket()作为句柄,server端选择fd from accept()作为句柄,而accept选用listenfd rom listen()作为句柄。 3. 无论哪一端,read时设定阻塞就可以了,没阻塞记得处理错误。 4. 64位linux下inet_ntoa()返回值为int,vfprintf报段错误 inet_ntoa()在32位
-
0memset(buf,0,50) buf - char * 0 - to be what? 50 - size should define like : char buf[50]; memset(buf,0,50);
-
1【1】gcc a.c -o a fail to create /var/cache/ccache/tmp 问题可能是同时开了多个终端或者打开多个进程所致。 目前解决方法:关掉终端,kill无关进程,重新打开终端即可编译。 【2】gcc -lm 编译math.h undefined reference to 'sin' 一般出现这个问题说明,在编译时已经正确找到头文件math.h,但在链接时因为没有合适的编译选项来包括数学库。所以,这样做的结果是可以产生.o的目标文件,但不会有可执行文件。 解决方法很简单,直接在编译选项中添加 -lm 即可。如下: gcc
-
0问题:从windows可以ping通fedora,输入IP后可以看到share文件夹,但是没有进入的权限。 解决: iptables -F setenforce 0
-
1路径双斜杠。。。。
-
01、先用普通用户登陆,在shell里登陆root(输入命令: su 输入root密码)。 2、然后编辑 vi /etc/pam.d/gdm(当 然你也可以用其他编辑器),注释掉 “authrequired pam_succeed_if.so user != root quiet”这行,在前面加上“#”即可,保存。 www.2cto.com 3、同理,编辑/etc/pam.d/gdm-password,注释掉 “auth required pam_succeed_if.souser != root quiet”这行,保存
-
02013-10-29 连着蛋疼了两天,重装了虚拟机的fedora之后就一直上不了网。 vmware8.0 Fedora-14-x86_64-DVD.iso 1 电脑直接接的猫,所以不能用桥接联网。 2 使用NAT,注意电脑管理-服务,看VWware的两个虚拟网络服务有没有打开,没有看是什么问题,如果启动出错,打开vmware network editor,恢复默认restore就可以重新建立bridge, nat 和host only 三个不同的联网方式。 3 目前初步断定不能联上网络的时间是因为重装fedora的时候电脑上不了网,所以装系统过程中配置网络失败,
-
4
-
2
-
1
-
0
-
0
-
1
-
2
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0
-
0