What's new in j2se 1.5? - Interview On Joshua Bloch

zhaozj2021-02-08  367

TheServerSide recently interviewed Joshua Bloch, author of the Collections framework, java.math, the book Effective Java, etc. Joshua discusses new Java language features scheduled for the Java 1.5 'Tiger' release including Typesafe Enums, autoboxing, static imports, and generics. He Also Talks About The Various People, Groups and Institutions That Are Driving The Java Language Forward. Watch Joshua Bloch's Interview.

FOLLOWING Is The Text Transcription of this Interview:

Interview with Joshua Bloch

JOSHUA, CAN you Tell US About your Involvement with Java over the last few years?

I came to Sun to work on Java in 1996 because, as you'll recall, back then, it was where all the action was happening, and the 1.0 release had just gotten out the door, and the first JavaOne had just happened and it jumped right into the 1.1 release. I was originally working in the security group, gravitating actually to the core platform group because I've always been involved with core platform elements, code reuse and I found that there was a great opportunity to do that here , basically to design APIs for everone to use. So in the 1.1 release I designed java.math which is the multi-precision integer arithmetic and fixed point decimal arithmetic package as well as a few other little things having to do with concurrency. and in every major release of the Java platform, that is, the J2SE platform, since then, I've contributed to one or more features. Also, I'm the author of the Jolt award-winning book called the 'Effective Java' programming language Guide.

What initiatives are you involved with currently?

I'm involved in several Java Community Process JSRs. Perhaps the most exciting one is JSR 201 which has 4 new language features. These are probably the first major language features added since inner classes in 1.1, if you do not count assertions which I didn in 1.4. Also, I'm involved in JSR 175, which is a metadata functionality for the programming language, JSR 166, which I'm not leading, Doug Lea of ​​SUNY Oswego is leading that JSR. It is adding concurrency utilities to The Platform. And (I'm Involved with SEVERALAL OTHER JSRS BUT Those Are the Main Ones.tell US About The New Language Features Defined in JSR 201?

There are 4 of them. One is the Type Safety Enum feature. This is actually covered as a pattern in my book, 'How to do Typesafe Enums on top of Ordinary Classes.' But it is unfortunately somewhat verbose. So to do an Enum IN A Language Like Pascal, OR C , OR C #, You Just Say Enum Season {Winter, Spring, Summer, Fall}. Whereas To Do a Typeesafe Enum Pattern in Java, IT Was A Large Quantity of Verbiage. Now you got a lot more power out of that because it was a real class you could put into collections, you could add methods to it, add fields to it, but unfortunately it was also somewhat more difficult to use. So this feature basically combines the power of this pattern that's described in my book with the expressivity and the ease of use of the standard Enum construct of the sort that you'll find in other languages. Most of those you'll find are merely glorified integers. They are not type-safe, They Aren't Very Powerful. So this One Will Be Far More Easy To Use and more Powerful. There I sa for each feature which is very simple. It is basically just a loop that let's you iterate over a collection or an array without explicit use of an iterator variable or an array index, when you do not need it.Then there's autoboxing. As you know the Java type system is divided into two parts: the primitives and the objects and in order to put a primitive into a collection you first have to box it So an int goes into an Integer, a float goes into a float,.. And so forth. and it makes for code what it's a little bit, because you have to cast, because you, one to cast, you don't have to have there, you don't have to have.come, you don't have to have.come caves.

The fourth feature is static import, which is a fairly simple feature. Currently, in order to access any static member of a class, whether it's a static field or a static method, you have to explicitly prefix it with the class name. So for instance math.pi or math.cos. and that is somewhat verbose and in particular it causes people to use an unsafe pattern. When people want to use a bunch of constants, instead of putting them in a class (and prefixing them with the class name), they put them in an interface and implement the interface to get all of its constants. But unfortunately that changes the public API of the class doing this trick because that class now implements this interface. and so what you want to is be able to do is use these static members without explicitly prefixing them. So what we're doing is we're adding an import statement much like the one that currently exists to import package members that allows you to import the static members of a class.The JSR 14, generics, Is Also Scheduled for the Java 1.5 Release. Can you tell Us More About The Motivation for Generals and How IT Will Impact Java Developers?

Generics is probably my favourite new feature that's coming in 1.5. The motivation is that currently, when you have Collection data types in Java, they are in fact Collections of Object and whenever you take anything out all you know is that it's an Object. And if you want to make it something more specific, you have to cast it explicitly. and if there's an error, so if you think there's a String in there and you cast what you've got out to a String, but in fact it's an Integer, you do not find out until runtime when your program blows up in the field. Now what Generics does for you is it takes that error and it moves it from runtime to compile time. So if you tried to take a String out of a collection of Integers, your program will not even compile any more. and furthermore, it eliminates the need for explicit casting. you declare the collection as being, say, a List of String rather than simply a List and then when you get an Element, you get a string rather Than Getting Object and Havin g to cast it to a String And since you have no explicit casts, you have nothing that can fail In fact, there are casts under the covers;.. the compiler generates them for you But they do not fail;. they are guaranteed To succeed.do you find people us't Using Collectes to store multiple type?

They occasionally do but typically there is a least common supertype. So you can still bound the types. That is, Generics buy you something unless people are really storing absolutely arbitrary elements in a collection, and as you probably know, they tend not to do that; I would say 90% of all collections are collections of Strings And then you have Maps from whatever your key type is to whatever your value type But far more often they will be used in a homogeneous fashion where all of the elements are.. Of The Same Type.What Is The Overall Philosophy Behind There Language Changes?

So basically what this does it takes the common uses, and makes them safer and easier. It takes things that you used to have to do by hand and it does them for you automatically. This a common theme running through a lot of the language work that's coming in the Tiger time frame. Many of these features take patterns that people used to have to code by hand, using boilerplate code, and they do it for the programmer, allowing the programmer to concentrate on their problem, the business problem that they 're solving, rather than these low level details of how do I make the Type Saftey Enum pattern work properly. And not only do they make it easier, but they make it safer. They make the programs more robust, more reliable, because of the fact that when you have one of these patterns, you have a lot of lines of code and if you enter them manually you can make errors, cutting and pasting, and you have to change certain variables to that they match on separate lines. and IF you only change TWO of the three things that you've got to change, then you have a program that does not work and it might compile, but it might not run. So if all this stuff is done automatically for you, then you have fewer opportunities to srew up. And moreover, the program's more readable, because instead of having all this verbiage, all you see is Enum Season {Winter, Summer, Spring, Fall}. If that's what you see, it's clear what you're trying to do .Are there, part of the java language you? 10

There are things I would change. For example, I think the Switch statement should have been more structured. I do not think it makes sense to have a fall through from the Case as was the case in the C programming language. There are certainly individual libraries I think that could stand to be improved, and some removed. some really have no use any more, for example, anyone who's read my book knows that I think ThreadGroup has basically outlived its usefulness. and I think for any system with size And complexity the honest answer to That Question Would Be Yes. When You Grow a System of this Size Over this Many Years, It Will Have Warts. But what you have to do is look at it as a whole and i think you'll find that Java hit a sweet spot in 1995 and it pretty much stayed at that sweet spot while growing and becoming more richer and powerful over the past 7 years.Where does the inspiration for these changes come? are you looking at other languages ​​as models or are The STANDARD ITEMS IN CO MPUTER science That Have Been research?

They're standard items with some exceptions. But making them work properly in the context of any given language is tough. And I have great respect for the original Java designers, as you know, Gosling and his team when they designed the language, which was then known as Oak, decided not to include some of these features, for instance, Enums, because the patterns as they were implemented in those days were not satisfactory. They knew that, and they figured, rather than putting in something that isn 't exactly what you want, let's wait until we know how to do it right and then let's put it in. So for example, Assertions were going to be in Java in the early days. If you look at the earliest specs for Oak, you'll see them there, but they did not quite know what they wanted to do or how to do them properly. So they were not put into Oak and they were added later, and most of them have that character. For instance We've Known We Wanted to Go Generics for Years But We Haven't Exactly Found The R ight combination of features and functionality. Generics in particular is a tough one because you have to prove the type system is sound and correct and that really is Rocket Science. In fact we have a team of computer scientists at various universities who are working to make Sure That Our Solution IS EXACLTY WHATY WANT.CAN You Tell Us More About The People Behind The Scenes; You Mentioned Universities. WHO's Driving The Java Language?

Well it is the Java Community that is driving the Java language. Of course there's Sun Microsystems and you know the names of a lot of the major players, the people who are spec leads on these JSRs, Mark Reinhold, myself, Neal Gafter who is doing various compiler related ones and a host of others. and then there's, sort of, a core of interested parties. So for examples you'll see names like Doug Lea from State University of New York at Oswego pop up all the time. He's been involved with the language since its earliest days. He's been one of its most ardent supporters in academia and he's contributed much in the way of ideas and APIs. You'll see a number of our people from industrial partners, from IBM, Oracle, Borland and it sort of pains me to list individual companies because there are so many of them that I can not do justice to all of them. But basically, there are major players in all of the areas that you would expect. there are people From the Open-Source Community, The Industry, Academia, And of Course Sun.how Would You Personally Compare Java 1.5 To C # as it currently stands?

I think it's a better language. It's smaller, simpler, more standard, that is, more based on open standards. It has a larger community amassed behind it, a larger mass of libraries written for it, tools written for it. Certainly, given The Choice, I'D Rather Program in Java.

Why Haven't you Added Popular Features Which Are Being Discussed Today Such Aspect Oriented Programming?

Clearly imitation is the sincerest form of flattery. C # is a lot like Java, they've clearly learned a lot from us. But they had a bunch of legacy systems they had to support, and threw in everything but the kitchen sink. We haven 'T Done That and We Continue To Resist That. So if You Look At The New Changs, You'll See That The are small 't mess with the JVM, and we do not mess with the sweet spot, the flavour of the language. Java has always combined simplicity with power in a unique way and because of that it's always appealed to a broad mass of developers and we do not want to lose the support of those developers. So every release, people ask for many many many things, we get thousands of RFVs and only the ones that are the strongest, most free of risk are going to make it into the language . There area good ideas like Aspect Oriented Programming Which Are Great and We're Glad That People Are doing them, but they're research and once they're battle tested for 10 years, well maybe they'll have a place in a production language. But if we put in every new featured that we're asked to put in, the language would quickly get out of hand. I remember a talk that Gosling gave around 1998 where he basically said that unless people could give him 3 compelling uses for a feature, we would not even think about putting it into the language and I try to Continue in That tradtion.is there.

There's one message. It's that I'm excited about them, that I'm thrilled to have the opportunity to participate in this growth of the language because all of these new features combine in ways to make the language really much more pleasant to use. and there are things that I've wanted to do for years. When you're growing a language it's very important that you grow it organically, that the features interoperate well and because of the fact that there are overlaps among the expert groups doing these features and they're constantly communicating (so that) all these things combine harmoniously. So for example, we have the for each feature to allow you to easily iterate over collections and we have Typesafe Enums. and the Typesafe Enums will export, their ' universe ', that is, the set of enumeration constants as a collection so you can use for each to iterate over them and you can combine this with Generics so that you do not have to explicitly cast. and once you've done all of THINGS, things that would've previously taken 20 or 30 lines of boiler plate code, now take a line or two and they're crystal clear. I've had the opportunity to already program in prototype implementations of some of these and I find it thrilling And i can't Wait to See Other People Smile by First Try.What You're Saying About Java 1.5 Sounds a Lot Like What I'm Hearing Out of Oracle, Where Their Aim Is To Delight The Developer.

转载请注明原文地址:https://www.9cbs.com/read-696.html

New Post(0)