nothing

主要成绩/进步(业绩、能力、态度)有待改进方面(业绩、能力、态度)公司方面(现有制度、文化等)直接主管(管理方式、团队建设等)

 

 

引用   内联函数  函数重载  默认参数的函数  类和构造/析构函数

隐藏的对象的指针this   类的初始化  重载构造函数  动态内存

拷贝构造函数和赋值构造函数  静态成员和友元  继承  派生类的构造 

抽象类  多重继承   继承的访问权限  构造函数调用顺序  多态
 
虚析构函数   模板函数  类模板   标准模板类  9-4vector的用法

迭代器的用法  列表list的用法   关联容器map   异常处理  节  IO和文件操作

流操作算子

 

 

IE

http://www.chinadmd.com/file/zeowi3wpazzussp3cevue6ve_1.html

http://www.cppblog.com/


http://www.52pojie.cn/thread-194220-1-1.html


http://www.360doc.com/userhome/8236462


http://www.360doc.com/content/13/0521/10/8236462_286968311.shtml

http://wenku.baidu.com/album/view/8899b0f90242a8956bece4b0.html

http://blog.csdn.net/weiwangchao_/article/details/4717830

http://blog.csdn.net/chenqiai0/article/category/939303

http://down.51cto.com/zt/1545


http://www.docin.com/p-533016585.html


http://wenku.baidu.com/link?url=stCPFx73LffXe19n1uFzoKlcULZUCXTwWM430EQHNgR54UK8j8-vhBOzx8rgzOBYDvx6CuWYbpx4YhAReQ1KHwsUZBE8xmP6caG8uqOu-Xm


http://wenku.baidu.com/album/view/504d9842a8956bec0975e3b0.html

http://www.docin.com/p-655277033.html

http://www.docin.com/p-674578864.html

http://chensavvy.blog.163.com/blog/#m=0&t=1&c=fks_087064085086083066080080085095081081080070083087094074

 

http://wenku.baidu.com/link?url=MqUCKSvGgisYuXdbSCQSn4Vww0kwXLacnEVcCJaa4Fpl4WB4bszrYQwAq9vJ4IR4p7Uo84ODYVx5Pp1ZO5AHP9rJKQggqtWBJ8H9xvrvU17


http://hi.baidu.com/hxk622?page=50

http://www.doc88.com/p-841633562161.html

http://www.docin.com/p-620192887.html

http://www.doc88.com/p-997971191918.html


http://wenku.baidu.com/link?url=JlOmdS1Po1ko__4zsEJSHq9vfME2vev3JYjsSR1Vkdq_K7rbdzHb2ScJga6v1r4lE-IibJE7eWkBwKie21xB3lqOzPPyA56nRmrLQVrgzsW


http://www.lvzejun.cn/?cat=6

 

::GetModuleFileName(

m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME)


ON_WM_SYSCOMMAND()
 ON_WM_PAINT()


m_sheet.AddPage("Shell命令执行\0", &m_dlgShellExec, IDD_DLG_SHELLEXEC);


GetModuleFileName(NULL,strPath.GetBuffer(MAX_PATH),MAX_PATH);
    strPath.ReleaseBuffer();


strPath =strPath.Left(strPath.ReverseFind('\\') + 1);

sscanf_s(strAppName,"%[^\\] \\ %[^\n]", temp[0], TERINFO_LEN, temp[1], TERINFO_LEN);
 m_strpath = temp[0];


GetPrivateProfileString(


AfxExtractSubString(


if(strstr(temp[0], "mtdblock4") && strstr(temp[0], "sysconfig"))
    {
     sscanf_s(temp[0],"%[^ ] %[^ ] %[^ ] %[^ ] %[^ ] %[^ ]",File_System[0], MIDLEN, Blocks[0],MIDLEN, Used[0],MIDLEN, Availables[0],MIDLEN, Per_Use[0],MIDLEN, Mount[0],MIDLEN);
    }


localtime_s(&t, &timer);
 sprintf_s(timeStr, LEN,"%4d-%02d-%02d %02d:%02d:%02d",t.tm_year+1900,t.tm_mon+1,
  t.tm_mday,t.tm_hour,t.tm_min,t.tm_sec);
 fprintf(gLogFile, "\r\n\r\n");
 fprintf(gLogFile,"%s",timeStr);
 fprintf(gLogFile, "\r\n\r\n");

 fprintf(gLogFile,"[1] %s     %s     %s     %s","磁盘使用", dfTaskStatusStr, dfPer_Use, dfResultStr);

 fprintf(gLogFile, "\r\n\r\n");
 fflush(gLogFile);

 


TCHAR szFilter[] = _T("所有文件(*.*)|*.*||");

 CString strFilePath;
 CFileDialog  dlg( TRUE, NULL, NULL, OFN_ALLOWMULTISELECT | OFN_HIDEREADONLY | OFN_OVERWRITEPROMPT, szFilter, NULL,0,0);

 dlg.m_ofn.nMaxFile = MAXLEN;
 // char* pc = new char[MAXLEN];

 char pc[MAXLEN];
 dlg.m_ofn.lpstrFile = pc;
 dlg.m_ofn.lpstrFile[0] = NULL;


 dlg.m_ofn.hInstance      = AfxGetInstanceHandle();
 dlg.m_ofn.Flags         &= ~OFN_EXPLORER;

 CString strFileName ;
 int iReturn = dlg.DoModal();
 if(iReturn ==  IDOK)

 


POSITION pos_file; 
  pos_file = dlg.GetStartPosition(); 

  while(pos_file != NULL)
  {
   strFileName = dlg.GetNextPathName(pos_file);

  // strFileName.ReverseFind("\\");
   
   CString FileNames;
   FileNames = strFileName.Right(strFileName.GetLength() - strFileName.ReverseFind('\\') - 1);

   char *tFileName = (char *)(LPCTSTR)FileNames;
      strcpy_s(SendFileName[SendFileNum++], tFileName);
  // AfxMessageBox(FileNames);

  // SendFileNum++;

  }

 

::GetCurrentDirectory(MAXLEN,Senddes.GetBuffer(MAXLEN));
  Senddes.ReleaseBuffer();

 

setsockopt(sSock, SOL_SOCKET, SO_SNDTIMEO, (char *)&WaitTimeSend, sizeof(int));

 


http://blog.sina.com.cn/s/blog_7cf307ad0100v246.html

http://blog.csdn.net/column/details/zhycheng.html?&page=1

http://blog.csdn.net/liufei_learning/article/details/7038873

http://blog.csdn.net/wallwind/article/category/933944

http://blog.sina.com.cn/s/articlelist_2096301997_0_1.html

http://blog.csdn.net/pongba/article/category/38164

http://www.kuqin.com/language/c/

http://www.jizhuomi.com/software/283.html

http://www.2cto.com/kf/201301/184497.html

http://snowolf.iteye.com/blog/402483

http://hi.baidu.com/ddbqzq/item/fb440218d134fb6970d5e873

http://developer.51cto.com/art/201105/262721.htm

http://club.topsage.com/thread-361458-1-1.html

http://edu.51cto.com/course/course_id-580.html

http://www.enet.com.cn/eschool/video/autohtml/310/281/0.shtml

http://blog.csdn.net/lishehe/article/details/7574488

http://www.docin.com/p-543729299.html

http://snowolf.iteye.com/blog/410984

http://www.wacpp.com/html/learning/list3.html

http://blog.csdn.net/pongba/article/details/1930150

http://blog.csdn.net/wdzxl198/article/details/9094793

大规模C++程序设计

http://blog.csdn.net/pongba/article/category/43902


http://www.baidu.com/s?usm=2&f=8&wd=%E5%BC%80%E6%BA%90%E4%B8%AD%E5%9B%BD%E7%A4%BE%E5%8C%BA&ie=utf-8&rsv_cq=%E5%BC%80%E6%BA%90%E4%B8%AD%E5%9B%BD&rsv_dl=0_right_recom_6727

http://www.baidu.com/s?usm=2&f=8&wd=eoe&ie=utf-8&rsv_cq=%E5%BC%80%E6%BA%90%E4%B8%AD%E5%9B%BD&rsv_dl=0_right_recom_6727

http://www.baidu.com/s?usm=2&f=8&wd=%E5%BC%80%E6%BA%90%E7%A4%BE%E5%8C%BA&ie=utf-8&rsv_cq=%E5%BC%80%E6%BA%90%E4%B8%AD%E5%9B%BD&rsv_dl=0_right_recom_6727

http://git.oschina.net/

http://www.oschina.net/translate/seven-traits-of-effective-programmers

http://zhidao.baidu.com/link?url=dd6mRrZxK2itMEFHghDjmQ-B8whsh6Mr3-85jU1_s0fP_Qzbwo0Q2Vg95GrkPQDB54zaMytxiTHpsoP38nn9c_

http://tool.oschina.net/


http://www.oschina.net/project/

http://www.oschina.net/

http://www.baidu.com/s?usm=4&f=8&wd=%E5%8D%9A%E5%AE%A2%E5%9B%AD&ie=utf-8&rsv_cq=csdn&rsv_dl=0_right_recom_6725

http://www.oschina.net/code/list/2/cpp?sort=time

http://bbs.51cto.com/forum-134-1.html


http://www.oschina.net/project/lang/21/c/


http://bbs.csdn.net/forums/Cpp

http://www.bcwhy.com/forum-40-1.html


http://bbs.51cto.com/thread-935524-1.html


http://www.winu.cn/forum-37-1.html

http://www.dz863.com/it/c++.htm

http://www.bcwhy.com/forum-40-1.html

http://club.topsage.com/thread-3274209-1-1.html

http://bbs.lupaworld.com/group-544-1.html

http://bbs.duowan.com/thread-27298877-1-1.html

http://www.52pojie.cn/thread-17089-1-1.html

http://www.kanliuxing.com/forum-18-3.html

http://www.apkbus.com/forum.php?mod=viewthread&tid=44993

http://bbs.txwb.com/forum.php?mod=viewthread&tid=184366

http://ar.newsmth.net/thread-b4f143dd0e9f79.html

http://www.open-open.com/bbs/view/1320990756062

http://bbs.pediy.com/showthread.php?t=137270

http://bbs.nhren.com/thread-915469-1-1.html


QQ:1468988906

易语言源码,QQ空间模块,易语言教程,C++论坛 QQ 1473816483

http://bbs.eetop.cn/thread-114929-1-1.html

http://www.eefocus.com/bbs/article_114_24418.html

http://bbs.21ic.com/icview-46047-1-1.html

http://www.ibm.com/developerworks/cn/aix/library/au-ctools1_boost/

http://bbs.51cto.com/thread-504970-1.html


http://bbs.eyuyan.com/read.php?tid=270915

http://www.iteye.com/topic/1118957

http://www.52pojie.cn/thread-122583-1-1.html


http://club.topsage.com/thread-2491699-1-1.html


http://bbs.bccn.net/thread-238896-1-1.html


http://bbs.eyuyan.com/simple/?t155703.html

http://www.iteye.com/topic/1133042


http://bbs.51cto.com/thread-80883-1.html


http://bbs.csdn.net/topics/340202893

http://bbs.bccn.net/thread-359828-1-1.html

http://bbs.duowan.com/thread-27298877-90-1.html

http://bbs.bccn.net/thread-380596-1-1.html

http://www.oschina.net/question/149816_22048

http://www.iteye.com/topic/1132277

http://bbs.bccn.net/thread-380595-1-1.html

http://bbs.51cto.com/thread-23142-1-1.html


http://www.oschina.net/question/1179759_118851

http://www.52pojie.cn/thread-186765-1-1.html

http://www.52pojie.cn/thread-241681-1-1.html

http://bbs.csdn.net/topics/340082201

http://bbs.eyuyan.com/read.php?tid=228594

http://bbs.51cto.com/thread-817027-1.html


http://www.codeforge.cn/s/1/rtp加密

 

http://blog.csdn.net/morewindows/article/details/8470452

http://bbs.csdn.net/topics/310134576

http://bbs.csdn.net/topics/360129555

http://blog.csdn.net/yuzl32/article/category/654410/2

http://blog.chinaunix.net/uid-331920-id-2416630.html

http://blog.csdn.net/chchzh/article/details/2276849

http://blog.csdn.net/i_code/article/details/6221240

http://blog.csdn.net/wangqiulin123456/article/details/7987999


http://bbs.csdn.net/topics/390388182

http://www.th7.cn/Program/c/201305/136251.shtml

http://www.52pojie.cn/thread-210130-1-1.html

http://www.kuqin.com/windows/

http://video.1kejian.com/university/network/26388/

http://download.csdn.net/download/gonggaobin/2993191


GetSystemDirectory(strRoute,MAX_PATH)
sprintf(strCMDBuff,"add 234.0.0.0 mask 255.0.0.0 %s -P", strPcIP);
ShellExecute(NULL, NULL, "route", strCMDBuff, strRoute, SW_HIDE);

g_socket.Create(PC_PORT,SOCK_DGRAM, g_tUDPex.strIPAddr)


GetLastError()

g_socket.SetSockOpt(

struct ip_mreq

g_socket.Close()

sprintf_s(dbgMsg, "CommReceiveMsg commFindList failed!\nTAG: %d    DATA: %s", pTlv->tag, pTlv->pData)

ntohl(

ntohs(

g_socket.SendTo(

closesocket(g_socket)


g_iErrorCode = g_socket.GetLastError();
  sprintf(LogDebug, "socket SendTo fail! dstIP:%s Error:%d",acSendIp, g_iErrorCode);


fprintf(fp, (CHAR*)pBuffer+28);
  fclose(fp);


g_tMsgList.pHead    = NULL;
    g_tMsgList.pTail    = NULL;

    return COMM_OK;


htonl(

htons(


HINSTANCE hIcmp = LoadLibrary("ICMP.DLL");

GlobalFree

FreeLibrary(


Button.AutoLoad(IDC_FIND,this)


重写

PreTranslateMessage(MSG* pMsg)

return CDialog::PreTranslateMessage(pMsg);

.Find(


List.InsertItem(

List.SetItemTextColor(index, -1, RGB(0xCC,0xCC,0xCC));  //灰色

List.SetItemTextColor(index, -1, RGB(0x43,0xcd,0x80));  //绿色

List.UpdateData(FALSE)

List.DeleteColumn(0)

List.DeleteAllItems()

m_nStyleEx = m_multiList.GetStyle();
 m_nStyleEx = m_nStyleEx|LVS_REPORT|LVS_EX_GRIDLINES;
 m_multiList.SetExtendedStyle(m_nStyleEx);
 m_multiList.SetCheckboxeStyle(FALSE);
 m_multiList.SetWindowPos(NULL,LEFT_PIX,TOP_PIX,RIGNT_PIX-50,BOTTOM_PIX-100,SWP_SHOWWINDOW);


m_multiList.SetImageList(IDB_STATUS);
 m_multiList.SetGridLines(TRUE);
 m_multiList.SetItemBkColor(-1,-1,RGB(0xF3,0xFA,0xFA));
 m_multiList.SetFont(&m_SerialFont);

 UpdateData(FALSE);

List.ShowWindow(SW_HIDE)

Dlg.SetWindowPos(

::CreateFile(pFileName, GENERIC_WRITE|GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0)


ReadFile(

atoi(

.Mid(

CTime curTime = CTime::GetCurrentTime()

int nYear = curTime.GetYear();
    int nMonth = curTime.GetMonth();  
    int nDay = curTime.GetDay();


.GetBuffer()

.ReleaseBuffer()

strchr((const char*)allBuf,'&')

curTime.Format("%Y-%m-%d")

::WriteFile(

_itoa(


COLORREF ItemColor.Lookup(

 

CMap<DWORD , DWORD& , COLORREF , COLORREF&>

MapItemColor.SetAt(iItem, color);
 this->RedrawItems(iItem, iItem);
 UpdateWindow();


aTextColors.InsertAt(nColumn, ::GetSysColor(COLOR_WINDOWTEXT))

aTextColors.RemoveAt(nColumn)


Edit->DestroyWindow()


imgList.DeleteImageList()

CListCtrl::OnDestroy()

GetParent()->SendMessage(WM_ITEM_SORTED, (WPARAM)m_nSortCol, (LPARAM)m_bSortAscending);


fprintf(stderr,"An error occurred in running the program. \n");
    fprintf(stderr,"%s\n",s);


((CButton*)GetDlgItem(IDC_TER_MCU))->SetCheck(TRUE)

m_check.SetCheck(1)

this->IsWindowVisible()


http://blog.163.com/jeftwang@126/blog/static/627440772008927190281/

http://blog.csdn.net/liu_cheng_ran/article/details/7571843

//设置按钮的有效区域
 CRgn rgn;
 CRect rc;
 GetClientRect(&rc);

 //有效区域为一个角半径为5的圆角矩形
 rgn.CreateRoundRectRgn(rc.left,rc.top,rc.right,rc.bottom,5,5);

 SetWindowRgn(rgn,TRUE);

 rgn.DeleteObject();


::GetWindowText(m_hWnd, strText, MAX_PATH);

i0xZgYIqkBX3esU4ayYlWF9qf2z6fyYIow-DIq-JRbuXOqEJwHGQvzcUxWlHGyXb3tfio04

http://blog.csdn.net/xxliuzhifeng/article/details/4768199

http://blog.sina.com.cn/s/blog_7d1dc9de0100zpgh.html

http://blog.csdn.net/wudizuijimo/article/details/5034908

http://www.vckbase.com/index.php/wv/374

http://www.kuqin.com/cpluspluslib/20080401/5580.html

http://www.cnblogs.com/ayanmw/archive/2012/07/24/2606401.html


http://www.cnblogs.com/shiyangxt/archive/2008/09/11/1289493.html

http://wenku.baidu.com/link?url=D4EeEPtR3v07jxs-fquWJzrIsTL2kM4q8zXG20ry_U5HIlE1hKRryOpI0bJBoLfH4yrW5xSB7hJeBQKH2F1UofjPlCj2lVjj7n8qY4YRM__

http://tech.163.com/05/0613/10/1M4EA0US00091589.html

http://blog.csdn.net/column/details/stl-morewindows.html

http://www.oschina.net/question/188977_58777?sort=default&p=2#answers

http://morningspace.51.net/resource/stlintro/stlintro.html

http://www.cnblogs.com/lfsblack/archive/2012/11/05/2755576.html

http://bbs.csdn.net/topics/310162238

http://www.cnblogs.com/lfsblack/archive/2012/11/10/2764334.html

http://www.cnblogs.com/biyeymyhjob/archive/2012/07/22/2603525.html

http://wenku.baidu.com/link?url=-kBGYePSywjsAYRlIjjB9Wky0rfM0n-LxNT0KYTqmJ__UKxINkmz-hGFa_yUGnNhWfJ1uyu1KsAFnU5wWkNOpCRzx4AWC4TrLY6AAwLZPJK

http://www.programfan.com/blog/article.asp?id=30503


http://hi.baidu.com/xuehuo_0411/item/5cbf6b1a7bbdbd7d7b5f25b9

http://blog.csdn.net/morewindows/article/details/7370155


MultiByteToWideChar(

WideCharToMultiByte(

 

configRecordEXCEL.Open(


CRecordset recset(&m_configRecordEXCEL);

sql = "select * from [Sheet1$] where WholeDeviceCode='" + strWholeCodeNo;
        sql = sql +"'";
        try
        {
            recset.Open(CRecordset::forwardOnly,sql,CRecordset::readOnly); 
            recset.GetFieldValue("WholeDeviceCode",tmpSN);   
            recset.Close();
        }


sprintf(pStr, "%02x:%02x:%02x:%02x:%02x:%02x", *p, *(p+1), *(p+2), *(p+3), *(p+4), *(p+5));


strstr((const char*)strItem,"filetype")

strchr((const char*)pt,',')

iswspace(*s)

strtok(NULL,"\n")

 

struct T_UDPEX
{
    CHAR    strIPAddr[MAX_IP_LEN + 1];
    CHAR    strRemoteIP[MAX_IP_LEN + 1];
};
typedef struct T_UDPEX T_UDPEX,*PT_UDPEX;


typedef VOID (*PT_SEND_FUN)( DWORD session,SHOW_INFO *showInfo,T_SEND_MSG *workMsg);

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
02-26 1018
探索全栈前端技术的魅力:HTML+CSS+JS+JQ+Bootstrap网站源码深度解析 在这个数字化时代,构建一个既美观又功能强大的网站成为了许多开发者和企业追逐的目标。本份资源精心汇集了一套完整网站源码,融合了HTML的骨架搭建、CSS的视觉美化、JavaScript的交互逻辑、jQuery的高效操作以及Bootstrap的响应式设计,全方位揭秘了现代网页开发的精髓。 HTML,作为网页的基础,它构建了信息的框架;CSS则赋予网页生动的外观,让设计创意跃然屏上;JavaScript的加入,使网站拥有了灵动的交互体验;jQuery,作为JavaScript的强力辅助,简化了DOM操作与事件处理,让编码更为高效;而Bootstrap的融入,则确保了网站在不同设备上的完美呈现,响应式设计让访问无界限。 通过这份源码,你将: 学习如何高效组织HTML结构,提升页面加载速度与SEO友好度; 掌握CSS高级技巧,如Flexbox与Grid布局,打造适应各种屏幕的视觉盛宴; 理解JavaScript核心概念,动手实现动画、表单验证等动态效果; 利用jQuery插件快速增强用户体验,实现滑动效果、Ajax请求等; 深入Bootstrap框架,掌握移动优先的开发策略,响应式设计信手拈来。 无论是前端开发新手渴望系统学习,还是资深开发者寻求灵感与实用技巧,这份资源都是不可多得的宝藏。立即深入了解,开启你的全栈前端探索之旅,让每一个网页都成为技术与艺术的完美融合!
探索全栈前端技术的魅力:HTML+CSS+JS+JQ+Bootstrap网站源码深度解析 在这个数字化时代,构建一个既美观又功能强大的网站成为了许多开发者和企业追逐的目标。本份资源精心汇集了一套完整网站源码,融合了HTML的骨架搭建、CSS的视觉美化、JavaScript的交互逻辑、jQuery的高效操作以及Bootstrap的响应式设计,全方位揭秘了现代网页开发的精髓。 HTML,作为网页的基础,它构建了信息的框架;CSS则赋予网页生动的外观,让设计创意跃然屏上;JavaScript的加入,使网站拥有了灵动的交互体验;jQuery,作为JavaScript的强力辅助,简化了DOM操作与事件处理,让编码更为高效;而Bootstrap的融入,则确保了网站在不同设备上的完美呈现,响应式设计让访问无界限。 通过这份源码,你将: 学习如何高效组织HTML结构,提升页面加载速度与SEO友好度; 掌握CSS高级技巧,如Flexbox与Grid布局,打造适应各种屏幕的视觉盛宴; 理解JavaScript核心概念,动手实现动画、表单验证等动态效果; 利用jQuery插件快速增强用户体验,实现滑动效果、Ajax请求等; 深入Bootstrap框架,掌握移动优先的开发策略,响应式设计信手拈来。 无论是前端开发新手渴望系统学习,还是资深开发者寻求灵感与实用技巧,这份资源都是不可多得的宝藏。立即深入了解,开启你的全栈前端探索之旅,让每一个网页都成为技术与艺术的完美融合!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值