当前位置:网站首页>Exercise arrangement 2.10, 11
Exercise arrangement 2.10, 11
2022-07-07 08:28:00 【aaacome】
1. When doing unit tests for programs in traditional object-oriented languages , Frequently used mock object .Mock The number of reflections the object passes through . Which of the following features of object-oriented is destroyed by reflection to the greatest extent ?
analysis :** Reflection breaks the encapsulation of code , Break the original access modifier access restrictions **
5. The following code runs and the result is ?
analysis :1. In the static statement block x Is a local variable , Does not affect static variables x Value
2.x and y Is a static variable , The default initial value is 0, Belong to the current class , Its worth changing will affect the operation of the whole class .
3.java The autoincrement operation is nonatomic
main In the method :
perform x– after x=-1
call myMethod Method ,x perform x++ The result is -1( after ++), but x=0,++x result 1,x=1 , be y=0
x+y+ ++x, Execute first x+y, The result is 1, perform ++x The result is 2, The final result is 3
3. The size is MAX In a circular queue ,f Is the position of the current header element ,r Is the position of the current tail element ( The position of the last element ), Then at any time , The number of elements in the queue is 
analysis :
4. The output of the following code is ?
analysis : Static blocks are not initialized first , It's a static domain
The static field contains static variables 、 Static blocks and static methods , Among them, static variables and static blocks need to be initialized . The initialization order of the two of them depends on their positions !
The initialization order is t1 t2 A static block
5. About OutOfMemoryError, The following statement is correct ()?
analysis : About this question ,《 In depth understanding of java virtual machine 》 About OOM(OutOfMemory) Explanation of the problem
A: An overflow caused by the runtime constant pool , Set up -XX:MaxPermSize Can solve this problem ,
B: An error caused by insufficient heap space , Problems are rare , Solutions and C identical ,
C: Belong to java Heap memory problem , The general method is through memory image analysis tools , Yes Dump The generated heap to store snapshots for analysis , The point is to make sure that objects in memory are necessary , That is, to judge whether there is a memory leak , There is still a memory overflow , If it is a memory column , Check the leaking object with tools GC Roots Reference chain information , Can accurately determine the location of the leaked code , No leakage , You should check the heap parameters of the virtual machine , If you can continue to increase , You can set -Xmx solve the problem
D:java.lang.OutOfMemoryError: nativeGetNewTLA When the virtual machine cannot allocate new thread local space (Thread Local Area) Error message at the time of , This error is the thread requesting a new TLA When the , This exception usually only occurs in jRockit virtual machine , Only too absolute .
1. If the adjacency table of a directed graph is i Single linked list is empty , Is the first i The outgoing degree of vertices is zero .( )
analysis :
v3 The degree of 0
4. Judge the correctness of the following sentences :MFC in CString Is a type safe class .
analysis : Type safety is not a type , It is a specification about type operation .
Such as : Do not allow different types of data to be converted to each other
int Num =3;
string Str=“3”;
Num =Str; // wrong
Num=int.Parse(Str);// Yes
Type safety requires different types of data that can be converted to each other during conversion Explicit conversion
5. The correct one in the following description of heap is ()
analysis : The filtering times of a complete binary tree constructed by keyword sequence depends on the source binary tree sequence , therefore Ⅳ error .
2.AOE The net should be a ( )
analysis : In a directed acyclic graph , Use vertices to represent activities , Use the directed edge to indicate the order in which activities begin , This kind of graph is called AOV The Internet ;AOV The network can reflect the sequence of tasks ( A topological sort ).
3.c++ among , The error in the following array definition is ( )
analysis :B The content to the right of the equal sign of the answer is three rows and two columns , Conflict with the definition of two rows and three columns , So choose B
5. The following statement about the graph is wrong ()
analysis :A. Graph is a more generalized tree , There are also leaf nodes . C. DFS,BFS The results are different , It depends on the rules , Such as the first Left rear right , First right then left . D. The topological sequence
边栏推荐
- Snyk dependency security vulnerability scanning tool
- Vulnerability recurrence easy_ tornado
- Analyzing the influence of robot science and technology development concept on Social Research
- CCTV is so warm-hearted that it teaches you to write HR's favorite resume hand in hand
- 单场带货涨粉10万,农村主播竟将男装卖爆单?
- 【雅思口语】安娜口语学习记录 Part3
- Function extension, attribute extension and non empty type extension in kotlin
- 解读创客思维与数学课程的实际运用
- The truth of robot education in hands-on practice
- Rainbond结合NeuVector实践容器安全管理
猜你喜欢

opencv学习笔记三——图像平滑/去噪处理

在Rainbond中一键部署高可用 EMQX 集群

一文了解如何源码编译Rainbond基础组件

漏洞複現-Fastjson 反序列化

Qinglong panel - today's headlines

Using nocalhost to develop microservice application on rainbow

iptables 之 state模块(ftp服务练习)

GFS distributed file system

Practice of implementing cloud native Devops based on rainbow library app

Pvtv2--pyramid vision transformer V2 learning notes
随机推荐
Domain specific language / DSL in kotlin
Xcit learning notes
[quick start of Digital IC Verification] 11. Introduction to Verilog testbench (VTB)
GFS distributed file system
Snyk dependency security vulnerability scanning tool
A method for quickly viewing pod logs under frequent tests (grep awk xargs kuberctl)
Openjudge noi 2.1 1752: chicken and rabbit in the same cage
[paper reading] icml2020: can autonomous vehicles identify, recover from, and adapt to distribution shifts?
Easy to understand SSO
Pytoch (VI) -- model tuning tricks
Installation and configuration of PLSQL
eBPF Cilium实战(2) - 底层网络可观测性
Lua programming learning notes
单元测试报告成功率低
Use of any superclass and generic extension function in kotlin
What is the function of paralleling a capacitor on the feedback resistance of the operational amplifier circuit
探索STEAM艺术设计中的创造力
【雅思口语】安娜口语学习记录 Part2
字符串操作
一种适用于应用频繁测试下快速查看Pod的日志的方法(grep awk xargs kuberctl)