码迷,mamicode.com
首页 > Windows程序 > 周排行
通过标准的Runtime API(C函数)打印UIKit中UIView的所有变量、属性以及方法
Ivar:定义对象的实例变量,包括类型和名字。objc_property_t:定义属性。叫这个名字可能是为了防止和Objective-C 1.0中的用户类型冲突,那时候还没有属性。Method:定义对象方法或类方法。这个类型提供了方法的名字(就是**选择器**)、参数数量和类型,以及返回值(这些信息合起来称为方法的**签名**),还有一个指向代码的函数指针(也就是方法的**实现**)。SEL:定义...
分类:Windows程序   时间:2015-09-08 12:36:01    阅读次数:280
window命令行查看端口占用及解决方法
1,C:\Users\yj>netstat -ano |findstr 端口号 2,C:\Users\yj>tasklist|findstr 进程号 3,C:\Users\yj>taskkill -f -t -im 文件名 ?已可以 ? C:\Users\yj>taskkill /f /pid 进程号...
分类:Windows程序   时间:2015-09-08 12:44:23    阅读次数:192
C#抽象类
using System;using System.Collections.Generic;using System.Linq;using System.Text;//抽象类的一个实例namespace Abstruct{ abstract class Abclass { public v...
分类:Windows程序   时间:2015-09-09 11:18:05    阅读次数:195
C#扩展方法
using System;using System.Collections.Generic;using System.Linq;using System.Text;/** 扩展方法允许编写和声明它的类之外的类关联的方法* 1、扩展方法必须声明为static* 2、扩展方法声明所在的类也必须声明为st...
分类:Windows程序   时间:2015-09-09 11:19:38    阅读次数:166
【转】Delphi调用webservice总结
原文:http://www.cnblogs.com/zhangzhifeng/archive/2013/08/15/3259084.htmlDelphi调用C#写的webservice用delphi的THTTPRIO控件调用了c#写的webservice。下面是我调试时遇到的一些问题:1:导入wsd...
分类:Windows程序   时间:2015-09-09 11:26:18    阅读次数:304
Windows下安装pip
很多东西不记下来就忘记了..在Windows下安装pip其实也比较简单,看了一些教程是这样的:1.在以下地址下载最新的PIP安装文件:http://pypi.python.org/pypi/pip#downloads2.解压安装3.下载Windows的easy installer,然后安装:http...
分类:Windows程序   时间:2015-09-09 21:11:24    阅读次数:242
C#中有关string和byte[]转换的问题
byte[] byteArray = System.Text.Encoding.Default.GetBytes( str ); 怎么样,够简单吧? 反过来也是一样,把byte[]转成string:string str = System.Text.Encoding.Default.GetSt...
分类:Windows程序   时间:2015-09-10 10:55:53    阅读次数:176
关于window.location可以获取的信息
window.location方法后还还可以带href,search等参数,下面我们来看看获取url各项参数的办法。 URL即:统一资源定位符 (Uniform Resource Locator, URL) 完整的URL由这几个部分构成: scheme://host:port/path?quer...
分类:Windows程序   时间:2015-09-10 16:13:00    阅读次数:155
win server 企业 2008 iis自定义404错误页面
今天客户找来在2008中让设置404错误...说的我好纠结。下面是步骤:先进入iis管理,点击网页右边出现iis框中选中错误页勾中右边编辑因为客户的网页是动态的,所以选择第二个。选择后点确定最后完成有一个静态供参考:http://jingyan.baidu.com/article/046a7b3ec43d42f9c27fa93a..
分类:Windows程序   时间:2015-09-10 17:33:51    阅读次数:224
C#高級------数据字典练习
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace out_ref{ class Program ...
分类:Windows程序   时间:2015-09-10 22:36:38    阅读次数:380
图片开发接口-美女图片API开放接口
天狗开放阅图 是基于开源的 TngouFS-天狗文件系统而独立运维的图片系统,为广大的开发者提供一点小小的爱好, 相关接口 图片API列表 API 描述 基础 www.tngou.net/tnfs/api/classify 取得热点图片分类,可...
分类:Windows程序   时间:2015-09-11 00:17:43    阅读次数:5068
C# 子窗体最大化后Icon与MDI窗体的菜单合拼的问题
C#子窗体最大化时, 那个图标跑到主窗体的前面去了, 造成界面不统一也不美观。所以需要进行处理, 只要有主窗体的menuStrip1(菜单)控件的ItemAdded事件中加进下面代码:if (e.Item.Text.Length == 0 || e.Item.Text == "还原(&R)" || ...
分类:Windows程序   时间:2015-09-11 12:02:10    阅读次数:176
笔记03 wpf 在MVVM模式下怎样在Viewmodel里面获得view的控件对象
转自http://blog.csdn.net/qing2005/article/details/6601199http://blog.csdn.net/qing2005/article/details/6601475MVVM中轻松实现Command绑定(二)传递Command参数属性栏里去设置的。语...
分类:Windows程序   时间:2015-09-11 14:23:41    阅读次数:2285
Configure custom SSL certificate for RDP on Windows Server 2012 in Remote Administration mode
Q:So the release of Windows Server 2012 has removed a lot of the old Remote Desktop related configuration utilities. In particular, there is no more R...
分类:Windows程序   时间:2015-09-11 16:04:29    阅读次数:355
rebbitmq-RPC(C#)
RPC(Remote Procedure Call Protocol)——远程过程调用协议运行时,一次客户机对服务器的RPC调用,其内部操作大致有如下十步:1.调用客户端句柄;执行传送参数2.调用本地系统内核发送网络消息3.消息传送到远程主机4.服务器句柄得到消息并取得参数5.执行远程过程6.执行的...
分类:Windows程序   时间:2015-09-11 17:25:20    阅读次数:279
Diabetic Retinopathy Winner's Interview: 1st place, Ben Graham
Diabetic Retinopathy Winner's Interview: 1st place, Ben GrahamBen Graham finished at the top of the leaderboard in the high-profileDiabetic Retinopath...
分类:Windows程序   时间:2015-09-11 20:44:34    阅读次数:401
asp web api 怎么使用put和delete。
Method Overriding RESTful services allow the clients to act on the resources through methods such as GET, POST, PUT, DELETE, and so on. GET and POST a...
分类:Windows程序   时间:2015-09-11 23:20:34    阅读次数:285
怎么利用C#中的 webclient 创建cookie
Cookies are not limited only to web browsers. any http-aware client that supports cookies can deal with a cookie sending aSp .net Web api. the followi...
分类:Windows程序   时间:2015-09-11 23:22:34    阅读次数:383
C#黑白棋制作
前些天自己复习一下C#语言做了个黑白棋,望大家看一下,可能有些bug嘿嘿链接如下http://files.cnblogs.com/files/flyingjun/%E9%BB%91%E7%99%BD%E6%A3%8BV1.2.rar还有源文件http://files.cnblogs.com/file...
分类:Windows程序   时间:2015-09-12 14:44:09    阅读次数:330
C# 学习笔记1_类
定义:将成员及方法封装到类中,类的实例则称为对象。结构:属性,类修饰符,class,类名,{类体}类修饰符:new,public,protected,internal,private,abstract,sealed访问权限控制:private(私有),public(公有)
分类:Windows程序   时间:2015-09-12 18:58:20    阅读次数:171
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!