首页 > 2015年07月16日 > 全部分享
java网络编程(3)——UDP
UDP在java中主要使用DatagramSocket来实现通讯,数据一般是通过DatagramPacket来封装; 发送方只需指定接受方的地址和端口,然后通过send()方法就可以把封装在DatagramPacket中数据发送过去! 而接收方只需同样利用DatagramSocket和一个D...
分类:编程语言   时间:2015-07-16 22:06:48    收藏:0  评论:0  赞:0  阅读:246
Ubuntu下升级Git以及获取ssh keys的代码
今天开始用的git,记下获取ssh keys 的代码?123ssh-keygen -t rsa -C "your_email@example.com"# Enter file in which to save the key (/home/you/.ssh/id_rsa):ssh-add id_rs...
分类:系统服务   时间:2015-07-16 22:06:18    收藏:0  评论:0  赞:0  阅读:451
Codeforces Round #204 (Div. 2)——A找规律——Jeff and Digits
Jeff's gotncards, each card contains either digit 0, or digit 5. Jeff can choose several cards and put them in a line so that he gets some number. Wha...
分类:其他   时间:2015-07-16 22:06:08    收藏:0  评论:0  赞:0  阅读:392
开发常用到的terminal命令
1、删除work_plugin目录下的.svn文件(最后面的;也是命令的一部分)sudo find /Users/maxinliang/DaTang/work_plugin ".svn" -exec rm -r {} \;2、http://www.7do.net/resources-11707-1-...
分类:其他   时间:2015-07-16 22:05:58    收藏:0  评论:0  赞:0  阅读:136
Codeforces Round #310 (Div. 1)——A水——Case of Matryoshkas
Andrewid the Android is a galaxy-famous detective. He is now investigating the case of vandalism at the exhibition of contemporary art.The main exhibi...
分类:其他   时间:2015-07-16 22:05:48    收藏:0  评论:0  赞:0  阅读:274
iOS AvPlayer AvAudioPlayer音频的后台播放问题
iOS 4开始引入的multitask,我们可以实现像ipod程序那样在后台播放音频了。如果音频操作是用苹果官方的AVFoundation.framework实现,像用AvAudioPlayer,AvPlayer播放的话,要实现完美的后台音频播放,依据app的功能需要,可能需要实现几个关键的功能。首...
分类:移动平台   时间:2015-07-16 22:05:38    收藏:0  评论:0  赞:0  阅读:355
C++中默认参数
1、函数原型中可能会声明参数默认值,默认值是在没有提供参数值时使用的一个值。比如函数原型 long myFunction(int x=50);该原型就指出了一个参数默认值50,原型中声明参数值与函数定义中没有影响,函数定义中还可以使用:long myFunction(int x){函数定义};如果调...
分类:编程语言   时间:2015-07-16 22:05:18    收藏:0  评论:0  赞:0  阅读:282
Seven Python Tools All Data Scientists Should Know How to Use
Seven Python Tools All Data Scientists Should Know How to UseIf you’re an aspiring data scientist, you’re inquisitive – always exploring, learning, an...
分类:编程语言   时间:2015-07-16 22:04:58    收藏:0  评论:0  赞:0  阅读:124
PAT-BASIC-1035-插入与归并
根据维基百科的定义:插入排序是迭代算法,逐一获得输入数据,逐步产生有序的输出序列。每步迭代中,算法从输入序列中取出一元素,将之插入有序序列中正确的位置。如此迭代直到全部元素有序。归并排序进行如下迭代操作:首先将原始序列看成N个只包含1个元素的有序子序列,然后每次迭代归并两个相邻的有序子序列,直到最后...
分类:其他   时间:2015-07-16 22:04:39    收藏:0  评论:0  赞:0  阅读:298
What Can I Do With This Major?
What Can I Do With This Major?MajorsDon’t see your major?AccountingAdvertisingAfricana StudiesAgricultural Leadership, Education and CommunicationsAme...
分类:其他   时间:2015-07-16 22:04:18    收藏:0  评论:0  赞:0  阅读:300
Windows Git安装指南
步骤如下: 1、资源下载 :Git-1.9.4-preview20140815.exe http://code.google.com/p/tortoisegit/downloads/list 2、安装包下载完成后,双击进入安装界面,如下图: 3、两步next后选择安装目录,如下图: 4、next进入...
分类:Windows开发   时间:2015-07-16 22:04:09    收藏:0  评论:0  赞:0  阅读:298
设计模式之单例模式
单例模式保证一个类只有一个实例,并且提供一个全局的访问点。package com.hml.singleton;/** * 饿汉式 */public class Singleton { private static Singleton instance = new Singleton(); ...
分类:其他   时间:2015-07-16 22:03:58    收藏:0  评论:0  赞:0  阅读:226
装饰器模式和代理模式区别
代理模式和装饰者模式上在语法形式上几乎完全一样,那么它们的区别在哪里呢?装饰者模式:动态地给一个对象添加一些额外的职责。就增加功能来说,装饰模式相比生成子类更加灵活代理模式:为其它对象提供一种代理以控制对这个对象的访问。其实,它们的着重点一个在于“增加”职责,另一个在于“控制”访问。这是它们最本质的...
分类:其他   时间:2015-07-16 22:03:48    收藏:0  评论:0  赞:0  阅读:277
Webform——验证控件
验证控件一般是在注册的时候用到,是直接将JS代码封装到了控件里面,拉过来直接可以用,下面介绍一下主要用法:1、CompareValidator:比较验证 常用属性:ControlToCompare 用来进行比较的控件的ID ControlToValidate 要验证的控件的ID ...
分类:Web开发   时间:2015-07-16 22:03:38    收藏:0  评论:0  赞:0  阅读:382
BZOJ 3160 万径人踪灭 解题报告
这个题感觉很神呀。将 FFT 和 Manacher 有机结合在了一起。首先我们不管那个 “不能连续” 的条件,那么我们就可以求出有多少对字母关于某一条直线对称,然后记 $T_i$ 为关于直线 $i$ 对称的字母对的数量,那么答案(暂记为 $Ans$)就会是:$$Ans = \sum 2^{T_i}-...
分类:其他   时间:2015-07-16 22:03:28    收藏:0  评论:0  赞:0  阅读:322
C++ 中 char 与 int 转换问题
itoa功 能:把一整数转换为字符串函 数:char *itoa(int value, char *string, int radix);解 释:itoa 是英文integer to array(将 int 整型数转化为一个字符串,并将值保存在数组 string 中)的缩写。参 数:value: 待...
分类:编程语言   时间:2015-07-16 22:03:08    收藏:0  评论:0  赞:0  阅读:252
uva 10115 - Automatic Editing
#include#include#include#include#includeusing namespace std;string pa[22];string des;int main(){ int n; while(cin >> n && n != 0){ cin.ig...
分类:其他   时间:2015-07-16 22:02:48    收藏:0  评论:0  赞:0  阅读:231
UI2_UICollectionViewPicture
// AppDelegate.m// UI2_UICollectionViewPicture//// Created by zhangxueming on 15/7/16.// Copyright (c) 2015年 zhangxueming. All rights reserved.//#...
分类:其他   时间:2015-07-16 22:02:38    收藏:0  评论:0  赞:0  阅读:142
Netbeans配合xdebug调试
http://xdebug.org/download.php下载对应的xdebug的dll不知道php文件中的ext文件夹中并且加入以下配置在php.info然后重启apchezend_extension = D:\php\ext\php_xdebug-2.3.3-5.6-vc11-x86_64.d...
分类:Web开发   时间:2015-07-16 22:02:28    收藏:0  评论:0  赞:0  阅读:354
LeetCode#219 Contains Duplicate II
Problem Definition: Given an array of integers and an integer k, find out whether there there are two distinct indices i and j in the array such tha.....
分类:其他   时间:2015-07-16 22:02:18    收藏:0  评论:0  赞:0  阅读:234
2299条   上一页 1 ... 10 11 12 13 14 ... 115 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!