码迷,mamicode.com
首页 >  
搜索关键字:static const    ( 70582个结果
算法学习:给定一个序列求最大子序列的和
题目 给定一个序列,给出最大子序列的和。 解答 public class maxSubSum { public static int maxSubSum1(int [] a){ int maxSum = 0; for (int i = 0; i < a.length; i++) { for(int ...
分类:编程语言   时间:2021-05-24 14:09:52    阅读次数:0
Helloworld
Hello,world Java代码: public class Hello{ public static void main(String[] args){ System.out.print("Hello,world!"); }} 编译: javac Hello.java //编译生成class文 ...
分类:其他好文   时间:2021-05-24 14:06:34    阅读次数:0
2021ccpc黑龙江省赛dp题
#include <iostream> #include <cstring> #include <cmath> using namespace std; using ll=long long ; const int maxn=1e3+10; int dp[maxn][maxn]; int sum[m ...
分类:其他好文   时间:2021-05-24 13:59:03    阅读次数:0
php单列设计模型
<?php class One{ private static $_one; private function __construct(){} private function __clone(){} public static function getOne(){ if(!self::$_one ...
分类:Web程序   时间:2021-05-24 13:36:59    阅读次数:0
JavaScript let 和 const 关键字
JavaScript let 和 const ECMAScript 2015(ECMAScript 6) ES2015(ES6) 新增加了两个重要的 JavaScript 关键字: let 和 const。 let 声明的变量只在 let 命令所在的代码块内有效。 const 声明一个只读的常量,一 ...
分类:编程语言   时间:2021-05-24 13:32:18    阅读次数:0
CountDownLatch
countDownLatch这个类使一个线程等待其他线程各自执行完毕后再执行。 public class CountDownLatchDemo { public static void main(String[] args) throws InterruptedException{ /** * * ...
分类:其他好文   时间:2021-05-24 13:31:31    阅读次数:0
两阶段终止模式volatile版本
public class Test { public static void main(String[] args) throws InterruptedException { TwoPhaseTermination tpt = new TwoPhaseTermination(); tpt.star ...
分类:其他好文   时间:2021-05-24 13:06:08    阅读次数:0
东西南北中布局
package cn.rushangw.lesson01;import java.awt.*;public class TestBorderLayout { public static void main(String[] args) { Frame frame = new Frame("TestB ...
分类:其他好文   时间:2021-05-24 13:01:24    阅读次数:0
Java的循环 While ,DO...While ,FOR
for 是支持迭代的一种通用结构。最有效,最灵活 for 的循环次数在执行权确定 package com.sf.struct; public class For01 { //for 是支持迭代的一种通用结构。最有效,最灵活 //for 的循环次数在执行权确定 public static void m ...
分类:编程语言   时间:2021-05-24 13:00:45    阅读次数:0
ajax-express框架基本使用
1. 下载nodejs 2. 新建一个文件夹, 执行命令node init --yes 3.安装express框架 npm i express 4. 新建js 文件*** // 1. 引入express const express = require('express'); // 2. 创建应用对象 ...
分类:Web程序   时间:2021-05-24 12:49:03    阅读次数:0
70582条   上一页 1 ... 37 38 39 40 41 ... 7059 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!