码迷,mamicode.com
首页 >  
搜索关键字:public void __cdecl    ( 122950个结果
POJ 1503 Integer Inquiry(大数相加,java)
题目我要开始练习一些java的简单编程了^v^import java.io.*;import java.util.*;import java.math.*;public class Main { /** * @param args */ public static voi...
分类:编程语言   时间:2014-05-01 10:03:42    阅读次数:411
Yii,Linux与windows环境下面的不同
其实与其说是不同倒是可以说是需要注意的地方1. Linux下面,Model Component 等...在调用的时候要注意大小写..下面一段就会报错 1 class LinkController extends Controller 2 { 3 4 public function acti...
分类:Windows程序   时间:2014-05-01 09:44:53    阅读次数:593
ILGenerator.Emit动态 MSIL编程(二)
public sealed class ColorToArgb { /// /// 将十六进制转化为AGRB /// /// /// public static Color Hexadecima...
分类:其他好文   时间:2014-05-01 09:37:45    阅读次数:363
C语言每日一题之No.2
题目:已知三个整型数8,12,6,按公式s=a+b*c计算,并显示结果思路:定义三个整型变量a,b,c 定义一个变量s用来保存运算结果 输出程序: 1 #include 2 3 void main() 4 { 5 int a = 8; 6 int b = 12; 7 ...
分类:编程语言   时间:2014-05-01 09:26:46    阅读次数:347
SCJP_104——题目分析(1)
1.1) public class ReturnIt{2) returnType methodA(byte x, double y){3) return (short)x/y*2;4) }5) }what is valid returnType for methodA in line 2?这...
分类:其他好文   时间:2014-05-01 03:58:57    阅读次数:330
快速排序
package algorithm.sort;public class QuickSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); ...
分类:其他好文   时间:2014-05-01 03:33:20    阅读次数:330
SCJP_104——题目分析(2)
3.public class IfTest{ public static void main(String args[]){ int x=3; int y=1; if(x=y) System.out.println("Not eq...
分类:其他好文   时间:2014-05-01 03:32:18    阅读次数:320
计数排序
package algorithm.sort;public class CountingSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; int[] ...
分类:其他好文   时间:2014-05-01 03:25:05    阅读次数:252
堆排序
package algorithm.sort;public class HeapSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); p...
分类:其他好文   时间:2014-05-01 03:24:04    阅读次数:332
explicit浅谈
在C++中,explicit关键字主要用于防止隐式转换,用于修饰构造函数、复制构造函数。例如有一个类:class A { public: A( int count ) : m_data( count ){} private: int m_data; };int main() { ...
分类:其他好文   时间:2014-05-01 03:03:36    阅读次数:311
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!