Examples of DSTORE


Examples of org.apache.bcel.generic.DSTORE

/* 677 */     else if (type.equals(Double.TYPE.getName()))
/*     */     {
/* 679 */       int x = cp.addClass("java.lang.Double");
/* 680 */       int constrIndex = cp.addMethodref("java.lang.Double", "<init>", "(D)V");
/*     */
/* 682 */       il.append(new DSTORE(4));
/* 683 */       il.append(new NEW(x));
/* 684 */       il.append(new ASTORE(6));
/* 685 */       il.append(new ALOAD(6));
/* 686 */       il.append(new DLOAD(4));
/* 687 */       il.append(new INVOKESPECIAL(constrIndex));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.