October 2013
Beginner
148 pages
3h 38m
English
In this book, you will find a number of styles of text that distinguish among different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: " In the first case, you have not much control about the details, for example, a Pattern object will be created for each call of the facade methods delegating to the Pattern class "
A block of code is set as follows:
// system imports // Your custom imports: import java.util.regex.*; // system variables // Your custom variables: Pattern tuplePattern = Pattern.compile("\\((\\d+),\\s*(\\d+)\\)"); // expression start // Enter your code here: if (c_edge != null) { Matcher m = tuplePattern.matcher(c_edge); if (m.matches()) ...Read now
Unlock full access