码迷,mamicode.com
首页 >  
搜索关键字:pac    ( 21224个结果
WPF做一个侧边栏滑动进入的效果
效果 代码 1 <Window x:Class="WpfApp12.MainWindow" 2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft. ...
分类:Windows程序   时间:2021-04-15 12:47:15    阅读次数:0
for语句增强
package ShunXuDome;public class forDOme05 { public static void main(String[] args) { int[]numbers={10,20,30,40,50};//定义了一个数组 for (int i = 0; i < 5; i+ ...
分类:其他好文   时间:2021-04-15 12:23:41    阅读次数:0
6.synchronized的使用注意点
先来个单例模式的线程安全代码 package basic.single; public class SingleTon { private SingleTon(){ System.out.println(Thread.currentThread().getName()); } private sta ...
分类:其他好文   时间:2021-04-14 11:58:53    阅读次数:0
leetcode_1-两数之和
#题目 #代码 #include <unordered_map> #include <vector> using namespace std; class Solution { public: vector<int> twoSum(vector<int> &nums, int target) { v ...
分类:其他好文   时间:2021-04-13 12:55:20    阅读次数:0
算术运算符 模运算
package com.zhang.www.base.operater; public class Demo05 { public static void main(String[] args) { //关系运算符返回的结果: 正确,错误 布尔值表示 //if int a=10; int b=20; ...
分类:其他好文   时间:2021-04-13 12:33:43    阅读次数:0
Restful API
package com.example.query; import java.io.Serializable; public class UserQuery implements Serializable { private Integer id; private String username; ...
分类:Windows程序   时间:2021-04-13 12:17:10    阅读次数:0
linux shell之数组的特殊用法
vi string_array.sh #!/bin/bash city=(Nanjing Atlanta Massachusetts Marseilles) #建立一个简单的数组echo "Extracting Substring" #演示抽取子串功能echo ${city[*]:0} #抽取整个数 ...
分类:编程语言   时间:2021-04-13 12:08:59    阅读次数:0
CSS3三角形不断放大特效
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS3三角形不断放大特效</title> <link rel="stylesheet" href="css/style.css"> </head> <styl ...
分类:Web程序   时间:2021-04-13 12:07:21    阅读次数:0
猜数字游戏 计应192(西)第四组 贾宪谱
我用c#编写了一款猜数字游戏,系统随机生成一个1到100之间的数字,玩家进行猜测,如果猜错,提示玩家数字过大或过小,如果猜对恭喜玩家胜利,并且推出游戏。 #include<iostream> using namespace std; int main() { int num = rand() % 1 ...
分类:其他好文   时间:2021-04-13 12:04:34    阅读次数:0
100_监听器 Listener
https://www.bilibili.com/video/BV12J411M7Sj 监听器开发步骤 实现监听器接口,重写方法 package com.qing.listener; import javax.servlet.ServletContext; import javax.servlet. ...
分类:其他好文   时间:2021-04-13 11:54:43    阅读次数:0
21224条   上一页 1 ... 16 17 18 19 20 ... 2123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!