// // main.m // 03-set方法的内存管理 // // Created by apple on 13-8-9. // Copyright (c) 2013年 itcast. All rights reserved. // #import <Foundation/Foundation.h> @interface Dog : NSObject @end #import "Dog.h" @implementation Dog @end #import <Fo…
在做Java开发的时候常用的JVM内存管理有两种,一种是堆内存,一种是栈内存.堆内存主要用来存储程序在运行时创建或实例化的对象与变量,例如:我们通过new MyClass()创建的类MyClass的对象.而栈内存则是用来存储程序代码中声明为静态(或非静态)的方法.下面我给大家举个例子: 代码 public class Test{ static Vector list = new Vector(); static void makeThings(){ Object object = new Obj…