码迷,mamicode.com
首页 >  
搜索关键字:maybe not public    ( 83099个结果
其中假如把类b换成String,则s不会随着s1的改变而改变,为什么??
public class b{ private String s; public b(String s){this.s=s;} public String getS(){return s;} public void setS(String s){this.s=s;}}public class a{ ...
分类:其他好文   时间:2014-05-26 07:56:03    阅读次数:266
一般处理程序ashx结合gdi+处理图片
1 新建一般处理程序 .ashx public void ProcessRequest (HttpContext context) { context.Response.ContentType = "text/plain";context.Response.Write("Hello W...
分类:其他好文   时间:2014-05-26 07:24:18    阅读次数:221
TimeSpan时间间隔详解
1 public string GetShiXian(string fadanshijian) 2 { 3 string result,chulishijian; 4 5 DateTime fdTime, dqTim...
分类:其他好文   时间:2014-05-26 07:12:38    阅读次数:260
.net mvc 一个Action的 HttpGet 和 HttpPost
本文转自:http://stackoverflow.com/questions/11767911/mvc-httppost-httpget-for-actionController:[HttpGet]public ActionResult MyMethod(){ return MyMethod...
分类:Web程序   时间:2014-05-26 07:11:19    阅读次数:299
异常处理情况
public void Update(byte[] buffer){if ( buffer == null ) {throw new ArgumentNullException("buffer"); //判断参数为空,抛出异常,而非try catch捕获}Update(buffer, 0, buf....
分类:其他好文   时间:2014-05-26 07:03:27    阅读次数:268
判断是否AVL平衡二叉书
#include#include#include#include#include#include#includeusing namespace std;class node{public: int val; node* left; node* right; node():va...
分类:其他好文   时间:2014-05-26 06:48:48    阅读次数:246
简单上传图片代码
using System.IO; public string UpdatePic(HttpPostedFileBase pic) { string filePath = null; string filename = null; ...
分类:其他好文   时间:2014-05-26 06:45:48    阅读次数:186
Java中 return 和finally
1. 最简单的情形 public void main(){ String s = test(); System.out.println("s=[" + s + "]"); } public String test(){ String...
分类:编程语言   时间:2014-05-26 06:43:27    阅读次数:194
在Windows下用MingW 4.5.2编译live555
1、下载live555(http://www.live555.com/liveMedia/public/),解压。2、进入MingW Shell,输入cd: F:/Qt/live(假定解压到F:/Qt/live/目录下)3、./genMakefile mingw4、make,如果有错误(rtsp_f...
分类:Windows程序   时间:2014-05-26 06:24:14    阅读次数:533
各种String类型的时间转long型,long转String
唉! 有用的拿去吧。 直接可以用。 1 package com.tai.use; 2 3 import java.text.SimpleDateFormat; 4 5 public class DataUtil 6 { 7 /** 8 * 时间格式转换,将字...
分类:其他好文   时间:2014-05-24 12:47:52    阅读次数:439
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!