码迷,mamicode.com
首页 >  
搜索关键字:delete void    ( 74275个结果
再解Java中的String
今天朋友问我String的内容是真的不可变吗?我肯定告诉他是的?因为在我的主观意识里String就是一个不可变的对象。于是他给我发了这段程序: public class StringTest { public static void main(String[] args) ...
分类:编程语言   时间:2014-04-28 18:21:08    阅读次数:722
顺序统计:寻找序列中的最大最小数
查找输入序列中的最大最小数值,要求时间复杂度为1.5nC#实现如下:public class MinMaxFinder where T : IComparable { public void FindMinMax(T[] array, int startIndex, int en...
分类:其他好文   时间:2014-04-28 17:43:30    阅读次数:441
C函数及指针学习3
12345678910111213#include void main(){char *sa="sdhshdh";char *sb="cdehhhhsdssssd";printf("%d , %d \n",strlen(sa),strlen(sb));if(strlen(sa)-strlen(sb)...
分类:其他好文   时间:2014-04-28 15:27:16    阅读次数:473
引用对象做向上转换,但对虚函数不影响使用
//: WIND2.CPP -- Inheritance & upcasting#include enum note { middleC, Csharp, Cflat }; // Etc.class instrument {public: void play(note) const { // ...
分类:其他好文   时间:2014-04-28 01:35:42    阅读次数:1272
提问:"~"运算符
本人有一段代码关于"~"运算符 public class m{ public static void main(String[] args){ int x=~5; System.out.println(x); ...
分类:其他好文   时间:2014-04-28 00:48:41    阅读次数:326
纯虚函数也可以有内容,并被子类调用
#include class base {public: virtual void v() const = 0; virtual void f() const = 0 { // 纯虚函数也有实现内容,但子类仍然必须实现这个虚函数 cout << "base::f()\n"; }};voi...
分类:其他好文   时间:2014-04-27 23:47:48    阅读次数:561
hdu2509
1 //Accepted 0MS 232K 2 #include 3 #include 4 int ans; 5 int t; 6 int n; 7 void slove() 8 { 9 int x;10 ans=0;11 t=0;12 for (int i=0...
分类:其他好文   时间:2014-04-27 23:08:07    阅读次数:625
收藏php
PHP数据库以下是PHP数据库的代码:学生管理系统名字: 性别: 年龄: 电话: 住址: 里面主要是以 POST 以及 灵活运用PHPMYAMMIN 软件 和 添加表 和数据 ()到数据库 和 删除 表 ($sql = "delete from `message` where i...
分类:Web程序   时间:2014-04-27 23:04:15    阅读次数:644
归并排序
#includeusing namespace std;#define MAX 10000int array[MAX]; //待排序数组const int MAXN=0x7fffffff;void Merge(int array[],int start, int mid, int end) { .....
分类:其他好文   时间:2014-04-27 22:18:38    阅读次数:484
自定义提示框
思路利用VA_LIST可变参数,自定义欲提醒信息。 1 // 信息提示框 2 void CDECL AlertBox(TCHAR *Format, ...) 3 { 4 TCHAR buf[1024]; 5 va_list pArglist; 6 va_start(pArgl...
分类:其他好文   时间:2014-04-27 21:34:07    阅读次数:459
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!