顺序语句 案例 package com.bk201.struct; public class ShunXuDemo { public static void main(String[] args) { System.out.println("H"); System.out.println("e"); ...
                            
                            
                                分类:
其他好文   时间:
2021-03-10 13:13:09   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. ...
                            
                            
                                分类:
其他好文   时间:
2021-03-10 13:11:51   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    awsl qswl 真的服了我寄几!! 查了一个小时的eclipse的console不显示内容的原因,结果最后是因为眼输入数据。。。 超级无敌大无语,不输入数据,console怎么会输出内容呢!! 我大概是傻了吧。。 附代码:(论提示输入信息的重要性) package 视频基础练习java;impo ...
                            
                            
                                分类:
编程语言   时间:
2021-03-10 13:10:31   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    #include <bits/stdc++.h> using namespace std; const double EPS = 1e-8; const int N = 1e5+10; struct Point{ double x, y; }; int n; Point p[N]; bool equ ...
                            
                            
                                分类:
其他好文   时间:
2021-03-10 12:57:35   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                数字基本数据类型赋值与比较 //byte y = 128;编译错误 byte j = 127;//编译通过 byte x = (byte)(127+1);//编译通过 byte g = 1+1;//编译通过 //byte h = 139+1;编译错误 short i1 = 127; System.o ...
                            
                            
                                分类:
其他好文   时间:
2021-03-10 12:55:56   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    在学习过程中敲如下的一段代码: public class example4{ public static void main(String[] args){ int n=9; while(n>6){ System.out.println("n = "+n); n--; } } } 文件名为 exam ...
                            
                            
                                分类:
编程语言   时间:
2021-03-09 13:56:20   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    1. 修改文件如下 vim /lib/systemd/system/docker.service [Service]Type=notifyLimitNOFILE=1048576LimitNPROC=1048576LimitCORE=infinity 2. 重启服务 sudo systemctl da ...
                            
                            
                                分类:
其他好文   时间:
2021-03-09 13:55:48   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    Instant 类的使用 Instant 类概述 在时间线上的瞬间点。该类在时间线上建立单个瞬时点。 这可能用于在应用程序中记录事件时间戳。 now( ) 方法 //now() 获取本初子午线的时间 Instant instant = Instant.now(); System.out.printl ...
                            
                            
                                分类:
编程语言   时间:
2021-03-09 13:52:20   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    代码例子如下 public class Father{ private int i = test(); private static int j = method(); static{ System.out.print("(1)"); } Father(){ System.out.print("(2 ...
                            
                            
                                分类:
其他好文   时间:
2021-03-09 13:44:24   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    学习java的每日小收获 字符串连接符 以下面代码为例: public static Medo02{ public static void main(String agrs[]){ int i=10; int j=20; System.out.println(" "+i+j);//字符串连接符号 S ...
                            
                            
                                分类:
编程语言   时间:
2021-03-09 13:04:21   
                                阅读次数:
0