⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cachesizes.java

📁 Jive是基于JSP/JAVA技术构架的一个大型BBS论坛系统,这是Jive论坛2.6版本的源程序
💻 JAVA
字号:
/** * $RCSfile: CacheSizes.java,v $ * $Revision: 1.5 $ * $Date: 2002/05/10 21:53:54 $ * * Copyright (C) 1999-2002 CoolServlets, Inc. All rights reserved. * * This software is the proprietary information of CoolServlets, Inc. * Use is subject to license terms. */package com.jivesoftware.util;import java.util.*;/** * Utility class for determining the sizes in bytes of commonly used objects. * Classes implementing the Cacheable interface should use this class to * determine their size. * * @author Matt Tucker */public class CacheSizes {    /**     * Returns the size in bytes of a basic Object. This method should only     * be used for actual Object objects and not classes that extend Object.     *     * @return the size of an Object.     */    public static int sizeOfObject() {        return 4;    }    /**     * Returns the size in bytes of a String.     *     * @param string the String to determine the size of.     * @return the size of a String.     */    public static int sizeOfString(String string) {        if (string == null) {            return 0;        }        return 4 + string.length()*2;    }    /**     * Returns the size in bytes of a primitive int.     *     * @return the size of a primitive int.     */    public static int sizeOfInt() {        return 4;    }        /**     * Returns the size in bytes of a primitive char.     *     * @return the size of a primitive char.     */    public static int sizeOfChar() {        return 2;    }    /**     * Returns the size in bytes of a primitive boolean.     *     * @return the size of a primitive boolean.     */    public static int sizeOfBoolean() {        return 1;    }    /**     * Returns the size in bytes of a primitive long.     *     * @return the size of a primitive long.     */    public static int sizeOfLong() {        return 8;    }    /**     * Returns the size in bytes of a primitive double.     *     * @return the size of a primitive double.     */    public static int sizeOfDouble() {        return 8;    }    /**     * Returns the size in bytes of a Date.     *     * @return the size of a Date.     */    public static int sizeOfDate() {        return 12;    }    /**     * Returns the size in bytes of a Map object. All keys and     * values <b>must be Strings</b>.     *     * @param map the Map object to determine the size of.     * @return the size of the Map object.     */    public static int sizeOfMap(Map map) {        if (map == null) {            return 0;        }        // Base map object -- should be something around this size.        int size = 36;        // Add in size of each value        Object []  values = map.values().toArray();        for (int i=0; i<values.length; i++) {            size += sizeOfString((String)values[i]);        }        Object [] keys = map.keySet().toArray();        // Add in each key        for (int i=0; i<keys.length; i++) {            size += sizeOfString((String)keys[i]);        }        return size;    }    /**     * Returns the size in bytes of a List object. All elements     * <b>must be Strings</b>.     *     * @param list the List object to determine the size of.     * @return the size of the List object.     */    public static int sizeOfList(List list) {        if (list == null) {            return 0;        }        // Base list object (approximate)        int size = 36;        // Add in size of each value        Object []  values = list.toArray();        for (int i=0; i<values.length; i++) {            Object obj = values[i];            if (obj instanceof String) {                size += sizeOfString((String)obj);            }            else {                size += ((Cacheable)obj).getCachedSize();            }        }        return size;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -