首页 > 编程语言
java swing调用webservice实现qq在线查询是否在线
java swing调用webservice实现qq在线查询是否在线 代码下载地址:http://www.zuidaima.com/share/1550463277042688.htm...
分类:编程语言   时间:2014-07-24 10:28:57    收藏:0  评论:0  赞:0  阅读:270
VC++笔记十
VC2008 无法调试,无法断点,断点无效的最终解决方法 今天VC2008忽然又出现断点无效了,按上次博客说的格式化了源文件,也删了编译工程数据库文件,问题依就.经过测试找到了终解决方法 方法一: 其实出现这个问题常常出现在工程中某一个源文件中,多是文件内的一些不可视符出了问题,比较多的是由于制表符Tab(0x09)引起的 在无法点的源文件打开再把内容全选(Ctrl+A),然后在菜单 “编...
分类:编程语言   时间:2014-07-24 10:28:43    收藏:0  评论:0  赞:0  阅读:406
【足迹C++primer】52、转换和继承,虚函数
转换和继承,虚函数 Understanding conversions between base and derived classes is essential to understanding how object-oriented programming works in C++. 理解基类和派生类之间的转换是必不可少的 理解面向对象编程在。 Like built-i...
分类:编程语言   时间:2014-07-24 10:26:53    收藏:0  评论:0  赞:0  阅读:297
C++技术问题总结-第0篇
从今天开始,对C++常用技术做个总结。 参考书籍:《C++Primer》、《C++对象模型》、《设计模式》、《Windows核心编程》、《STL解密》。 1. static_cast等四个cast的具体意义 C++类型转换:隐式转换和显式转换。 显式转换:static_cast、dynamic_cast、reinterpret_cast、const_cast。 1.1...
分类:编程语言   时间:2014-07-24 10:26:20    收藏:0  评论:0  赞:0  阅读:461
java打印各种菱形
/** * 类说明 * * @author 曾修建 * @version 创建时间:2014-7-23 上午09:50:46 */ public class Diamond { public static void getDia(int n) { System.out.println("第一个 :"); for (int i = 0; i < n/2+1; i++) { ...
分类:编程语言   时间:2014-07-24 10:25:44    收藏:0  评论:0  赞:0  阅读:375
【LeetCode】【Python题解】Best Time to Buy and Sell Stock II
Say you have an array for which the ith element is the price of a given stock on day i. Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy on...
分类:编程语言   时间:2014-07-24 10:25:36    收藏:0  评论:0  赞:0  阅读:557
Spring-MVC入门实例 (一)
Spring MVC对于现在较成熟的Model-View-Control框架而言,其解决的主要问题无外乎下面几部分: 1》将web页面中的输入元素封装为一个(请求)数据对象。 2》根据请求的不同,调度相应的逻辑处理单元,并将(请求)数据对象作为参数传入。 3》逻辑处理单元完成运算后,返回一个结果数据对象。 4》将结果数据对象中的数据与预先设计的表现层相融合并展现给用户。...
分类:编程语言   时间:2014-07-24 10:23:09    收藏:0  评论:0  赞:0  阅读:360
JavaScript中的两个“0”(翻译)
本文翻译自JavaScript’s two zerosJavaScript has two zeros: ?0 and +0. This post explains why that is and where it matters in practice.JavaScript 中有两个“0”: -0...
分类:编程语言   时间:2014-07-24 10:18:03    收藏:0  评论:0  赞:0  阅读:456
javaweb学习总结(十四)——JSP原理
一、什么是JSP? JSP全称是Java Server Pages,它和servle技术一样,都是SUN公司定义的一种用于开发动态web资源的技术。 JSP这门技术的最大的特点在于,写jsp就像在写html,但它相比html而言,html只能为用户提供静态数据,而Jsp技术允许在页面中嵌套jav.....
分类:编程语言   时间:2014-07-24 10:15:16    收藏:0  评论:0  赞:0  阅读:418
Java数据类型中String、Integer、int相互间的转换
1.Integer转换成int的方法Integer i;int k = i.intValue();即Integer.intValue();2.int转换成Integerint i;Integer it = new Integer(i);3.String转换成int的方法String str = "1...
分类:编程语言   时间:2014-07-24 10:11:33    收藏:0  评论:0  赞:0  阅读:276
Add Two Numbers leetcode java
题目:You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a sin....
分类:编程语言   时间:2014-07-24 10:01:23    收藏:0  评论:0  赞:0  阅读:398
Copy List with Random Pointer leetcode java
题目:A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep c....
分类:编程语言   时间:2014-07-24 10:00:33    收藏:0  评论:0  赞:0  阅读:431
Java C# C语言中的占位符
一般拼接一段字符串在编程中是很常见的事,下面简单做个总结:什么是占位符?占位符就是先占住一个固定的位置,等着你再往里面添加内容的符号.1.Java中处理方法:package com.amos;import java.text.MessageFormat;/** * Created by amosli...
分类:编程语言   时间:2014-07-24 09:59:43    收藏:0  评论:0  赞:0  阅读:451
C语言简单strcat和strcmp的实现
对于C标准库中的字符串处理函数应该平常用的比较多;简单实现strcat和strcmp_strcpy:1 char *_strcpy(char *dest, char *src)2 {3 char *buf = dest;4 while((*dest++ = *src++))5 ...
分类:编程语言   时间:2014-07-24 09:58:03    收藏:0  评论:0  赞:0  阅读:410
JavaScript arguments你不知道的秘密
(function test(x){ x=10; console.log(arguments[0], x); //undefined, 10})();(function test(x){ x=10; console.log(arguments[0]); // 10})(1)...
分类:编程语言   时间:2014-07-24 09:57:13    收藏:0  评论:0  赞:0  阅读:328
Flatten Binary Tree to Linked List leetcode java
题目:Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5 / \ \ 3 4 6The flatten...
分类:编程语言   时间:2014-07-24 09:55:43    收藏:0  评论:0  赞:0  阅读:394
javascript各种专业名词
刚开始学javascript经常看到各种专业名词,在此整理一下个人的学习笔记:直接量直接量——就是程序中直接使用的数据值,如:88 //数字(String)"hello world" //字符串(Number)true //布尔值(Boobean)/[a-z][...
分类:编程语言   时间:2014-07-24 09:54:43    收藏:0  评论:0  赞:0  阅读:345
Rotate List leetcode java
题目:Given a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->5->NULL and k = 2,return 4->5->1->2-....
分类:编程语言   时间:2014-07-24 09:53:16    收藏:0  评论:0  赞:0  阅读:326
Reverse Linked List II leetcode java
题目:Reverse a linked list from position m to n. Do it in-place and in one-pass.For example:Given 1->2->3->4->5->NULL, m = 2 and n = 4,return 1->4->3->....
分类:编程语言   时间:2014-07-24 09:49:43    收藏:0  评论:0  赞:0  阅读:389
Eclipse启动时提示Fail to create the Java Virtual Machine的解决方法
这个错误是Eclipse里面的一个bug,我们通过如下的设置就可以解决它。打开eclipse安装目录下的eclipse.ini文件:将其中的256m改为128m,512m改为256m,1024m改为512m即可。修改后的文件内容如下:-startupplugins/org.eclipse.equin...
分类:编程语言   时间:2014-07-24 09:47:43    收藏:0  评论:0  赞:0  阅读:438
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!