OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [pr27171.java] - Rev 765

Compare with Previous | Blame | View Log

public class pr27171 {
 
	public static void main(String[] args) throws Throwable {
	  // Isolated low surrogate.
	  char x = 56478;  // 0xdc9e
	  String xs = new String(new char[] { x });
	  // Note that we fix a result for our implementation; but
	  // the JDK does something else.
	  System.out.println(xs.getBytes("UTF-8").length);
 
	  // isolated high surrogate -- at end of input stream
	  char y = 0xdaee;
	  String ys = new String(new char[] { y });
	  // Note that we fix a result for our implementation; but
	  // the JDK does something else.
	  System.out.println(ys.getBytes("UTF-8").length);
	}
}
 
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.