why Morgan Stanley?
摩根士丹利的企业文化及其优秀成员所组成的全球性社区交流模式正是我们与众不同的地方。
此外,公司为实习生提供的综合性培训发展项目,这类培训项目在行业中享有很高的名誉。摩根士丹利的企业文化在于开放、包容、激励人心——希望在摩根士丹利的实习可以激发出我无限的潜能。
你的优势是什么?what is your advantage?
在个人技术与能力方面,无论是扎实的专业基础、还是良好的沟通技巧、学习新事物的积极态度、优异的团队协作能力。
对摩根的了解 how much do you know about Morgan Stanley?
摩根士丹利(Morgan Stanley)是一家全球领先的国际性金融服务公司,业务范围涵盖投资银行、证券、投资管理以及财富管理等。
目前在全球27个国家的600多个城市有代表处,雇员总数达5万多人。
摩根士丹利是最早进入中国发展的国际投资银行之一,多年来业绩卓越。
为什么选择上海 重点
上海是中国的经济中心。机会很多,很多像摩根一样的跨国公司。因为在上海可以接触到很多新鲜的东西。可以结实到很多志同道合的人才。另外在上海呆了两年之后,比较喜欢上海的开放和活力,已经融入到上海的节奏中。
怎样防止内存泄漏,有哪些方法?(OutOfMemory) 重点
内存泄漏是一种无意的内存消耗形式,开发人员无法在不再需要时释放分配的内存块。
A memory leak is an unintentional form of memory consumption whereby the developer fails to free an allocated block of memory when no longer needed.
Java最显著的优点之一就是它的内存管理。您只需创建对象,Java垃圾收集器就负责分配和释放内存。然而,情况并不是那么简单,因为Java应用程序中经常出现内存泄漏。
One of the most significant advantages of Java is its memory management. You simply create objects and Java Garbage Collector takes care of allocating and freeing memory. However, the situation is not as simple as that, because memory leaks frequently occur in Java applications.
进程和线程的区别 What are the differences between a process and a thread?
正在执行的程序通常称为进程。线程是进程的一个子集(部分)。
- A program in execution is often referred as process. A thread is a subset(part) of the process.
一个进程由多个线程组成。线程是进程的最小部分,可以与进程的其他部分(线程)同时执行。 - A process consists of multiple threads. A thread is a smallest part of the process that can execute concurrently with other parts(threads) of the process.
进程有时被称为任务。线程通常被称为轻量级进程。 - A process is sometime referred as task. A thread is often referred as lightweight process.
进程有自己的地址空间。线程使用进程的地址空间,并与该进程的其他线程共享。 - A process has its own address space. A thread uses the process’s address space and share it with the other threads of that process.
介绍一下JAVA垃圾回收机制,JVM怎么判断是垃圾对象呢?Introduce Java Garbage Collection and how to
自我介绍
Do you know design pattern? do you know Singleton?
列举一些熟悉的设计模式;介绍一下单例模式;为什么要用设计模式?