• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wjshan0808

Learn from yesterday, Live for today, For a better tomorrow.
 ————wjshan0808

博客园    首页    新随笔    联系   管理    订阅  订阅
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
2014年1月15日
深拷贝浅拷贝[对象序列化]
摘要: using System;using System.Collections.Generic;using System.IO;using System.Linq;using System.Runtime.Serialization.Formatters.Binary;using System.Text;using System.Threading.Tasks;namespace 深拷贝浅拷贝_对象序列化_{ class Program { static void Main(string[] args) { #region 深浅拷贝原理... 阅读全文
posted @ 2014-01-15 23:33 wjshan0808 阅读(337) 评论(0) 推荐(0)
2014年1月13日
泛型<T>,是你肿莫了,还是我错了...
摘要: 委托自定义数组排序 项目一共三个文件如下。CSort.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace 委托自定义数组排序{ class CSort { public CSort() { } /// /// /// /// internal void Show(T[] a... 阅读全文
posted @ 2014-01-13 22:56 wjshan0808 阅读(2994) 评论(1) 推荐(0)
2014年1月5日
点名系统 附源码
摘要: 下载地址: 版本 Bate 1.0 http://pan.baidu.com/s/1gdgeNwn 版本 Bate 2.0 http://pan.baidu.com/s/1mgFg8GS 哈哈,仅供学习交流使用。 阅读全文
posted @ 2014-01-05 17:43 wjshan0808 阅读(291) 评论(0) 推荐(0)
飞行棋(士) [窗口 控制台 自定义 版] 附源码
摘要: 下载地址 :http://pan.baidu.com/s/1pJ0Nlwf http://pan.baidu.com/s/1hqgII1m效果 :哈哈,里面 Bug 和可优化的代码 不少 ... 阅读全文
posted @ 2014-01-05 17:15 wjshan0808 阅读(892) 评论(0) 推荐(0)
2013年12月28日
我,属羊...
摘要: 属羊的人性格很奇怪,有时候超爱说话,有时候可以一天不说话,高兴的时候,会拼命的说话,不高兴的时候,一句话也不说.属羊的人不爱记仇,但谁对他好谁对他不好,他还是记得很清楚的属羊的把真实的自己藏于半夜的寂静和午夜明朗的笑声中.属羊的最注重的就是安全感.希望被保护,却常常是一个人.属羊的不容易爱上一个人,... 阅读全文
posted @ 2013-12-28 01:07 wjshan0808 阅读(380) 评论(0) 推荐(0)
2013年11月24日
C# 自定义常用代码段快捷键
摘要: 不断更新中。。。分享地址:http://pan.baidu.com/s/15oE0X 阅读全文
posted @ 2013-11-24 23:34 wjshan0808 阅读(221) 评论(0) 推荐(0)
2013年11月15日
C++ MFC 操作文件夹及属性(新建,删除[包含子文件[夹]],剪切,复制,重命名)
摘要: 源文件:http://pan.baidu.com/s/169HCL运行mfc缺失的动态连接库:http://pan.baidu.com/s/17pGlT截图:不足之处仅供参考,哈哈。 阅读全文
posted @ 2013-11-15 00:45 wjshan0808 阅读(324) 评论(0) 推荐(0)
C++ MFC 文件操作(新建,删除,剪切,复制,读数据,写数据,重命名)
摘要: 源文件:http://pan.baidu.com/s/1ve0hV这是运行mfc缺失的dll动态链接库:http://pan.baidu.com/s/17pGlT哈哈,我也是初接触C++,基础的什么概念指针什么的都不懂,不足之处只做借鉴。图片: 阅读全文
posted @ 2013-11-15 00:40 wjshan0808 阅读(648) 评论(0) 推荐(0)
2013年11月6日
ip修改器
摘要: 哈哈,算法来源于网络。。。源码:http://pan.baidu.com/s/11P0P9参考:http://bbs.csdn.net/topics/370201571 http://bbs.csdn.net/topics/380175680?page=1http://blog.csdn.net/tsinfeng/article/details/5879074截图 阅读全文
posted @ 2013-11-06 00:30 wjshan0808 阅读(162) 评论(0) 推荐(0)
2013年9月26日
'extern'
摘要: The external variables in methods are defined by the first lines of the example above, whichstate their type and cause storage to be allocated for them. Syntactically, external definitions are just likedefinitions of local variables, but since they occur outside of functions, the variables are exter 阅读全文
posted @ 2013-09-26 17:49 wjshan0808 阅读(235) 评论(0) 推荐(0)
2013年9月24日
"%s"
摘要: The %s format specification in printf expects the corresponding argument to be a string represented in thisform. 阅读全文
posted @ 2013-09-24 11:13 wjshan0808 阅读(227) 评论(0) 推荐(0)
'\0'
摘要: the character '\0' (the null character, whose value is zero) at the end of the array it is creating, tomark the end of the string of characters. This conversion is also used by the C language: when a string constantlike"hello\n"appears in a C program, it is stored as an array of ch 阅读全文
posted @ 2013-09-24 11:09 wjshan0808 阅读(212) 评论(0) 推荐(0)
LINUX 下 一些常用的信息显示命令:
摘要: tcsh——shell程序,它可以在登录shell和shell 脚本命令处理器之间做命令语言解释器。stat——显示指定文件的相关信息who、w——显示在线登陆用户whoami——显示用户自己的身份hostname——显示主机名称uname——显示操作系统信息free——显示当前内存与交换空间的使用情况ifconfig——显示网络接口信息ping——测试网络连通性netstat——显示网络状态信息route——显示路由相关信息 阅读全文
posted @ 2013-09-24 00:02 wjshan0808 阅读(255) 评论(0) 推荐(0)
2013年9月20日
return zero,or ,return non-zero
摘要: it may return a value to its caller, which is in effect the environment in which the program was executed.Typically, a return value of zero implies normal termination; non-zero values signal unusual or erroneoustermination conditions.as a reminder that programs should return status totheir environme 阅读全文
posted @ 2013-09-20 16:27 wjshan0808 阅读(306) 评论(0) 推荐(0)
2013年9月19日
int c, int ndigit[10]; ++ndigit[c-'0'];
摘要: for example c-'0' is an integer expression with a value between 0and 9 corresponding to the character '0' to '9' stored in c, and thus a valid subscript for the array ndigit 阅读全文
posted @ 2013-09-19 12:57 wjshan0808 阅读(350) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3