关系运算符 在C++中关系运算中,其结果为bool ,分为true 和 false 逻辑运算符 在C++中逻辑运算符,其结果也为bool,优先级如下: ...
                            
                            
                                分类:
其他好文   时间:
2021-02-16 12:24:54   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                要使用ShowPane,而不要使用普通的ShowWindow void CMainFrame::OnViewPropWnd() { // TODO: 在此添加命令处理程序代码 if (!m_wndProperties.IsVisible()) m_wndProperties.ShowPane(TRU ...
                            
                            
                                分类:
其他好文   时间:
2021-02-16 12:16:01   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    控制流程语句 if-else语句 //标准语句 bool isWrong = true; bool isTesting = false; if (isWrong) { print('错误提示'); } else if (isTesting) { print('正在测试'); } else { pri ...
                            
                            
                                分类:
其他好文   时间:
2021-02-16 11:58:58   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    第十一天的学习 顺序结构 选择结构 很多时候需要去判断一个东西是否可行,然后我们才会去执行,这样的一个过程,在程序中要用 if语句 来表示。 if单选择结构 语法 布尔表达式就是xxx=true或xxx=false。 示例 如果不输入Hello,结果如下: 如果输入Hello,结果如下: 由此可得, ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 12:23:26   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    1. 注释 1. 前言 平时我们编写代码,在代码量比较少的时候,我们还可以看懂自己写的,但是当项目结构一旦复杂起来,我们就需要用到注释来帮助理解了 注释并不会被执行,它是给我们写代码的人看的 书写代码是一个非常好的习惯 平时写代码一定要注意规范 在Java中注释有三种 单号注释 多行注释 文档注释  ...
                            
                            
                                分类:
编程语言   时间:
2021-02-15 12:20:54   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    1.jackson的使用 乱码问题解决 注解@ResponseBody直接将方法的返回值 传到当前网页上 不需要去走视图解析器 问题解决 在注解ResponseMapping那里改为这个 或者可以更懒一点 直接在配置文件中声明 <mvc:annotation-driven> <mvc:message ...
                            
                            
                                分类:
编程语言   时间:
2021-02-15 12:03:04   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 11:53:52   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://www.acwing.com/problem/content/1133/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 11:53:38   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    https://www.acwing.com/problem/content/1136/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 11:53:26   
                                阅读次数:
0
                             
                         
                    
                        
                            
                            
                                
                    package net.utils; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; public class NetCheck { pub ...
                            
                            
                                分类:
移动开发   时间:
2021-02-10 13:11:58   
                                阅读次数:
0