- Learning Neo4j 3.x(Second Edition)
- Jér?me Baton Rik Van Bruggen
- 222字
- 2021-07-08 09:37:29
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We mapped the learningneo4j package to the /learningneo4j URL."
A block of code is set as follows:
public class StringHacking {
@UserFunction
@Description("Returns the last word of a string")
public String getLastWord( @Name("aStr") String aStr){
if(aStr==null) return null;
else {
int pos = aStr.lastIndexOf(" ");
if(pos==-1) return aStr;
else return aStr.substring(pos+1);
}
}
}
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
MATCH (ln:LastName)--(p:Person)
RETURN ln, learningneo4j.randomCount(p.lastName) AS badcount
Any command-line input or output is written as follows:
mkdir data/ldap/environment -p
mkdir data/ldap/db -p
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "In order to download new modules, we will go to Files | Settings | Project Name | Project Interpreter."
- 演進式架構(原書第2版)
- Node.js Design Patterns
- Visual C++串口通信技術詳解(第2版)
- Mastering KnockoutJS
- QGIS By Example
- 零基礎學單片機C語言程序設計
- Asynchronous Android Programming(Second Edition)
- Getting Started with Hazelcast(Second Edition)
- Python Essentials
- Python入門很輕松(微課超值版)
- Illustrator CS6設計與應用任務教程
- HTML+CSS+JavaScript網頁制作:從入門到精通(第4版)
- Instant GLEW
- SQL Server 2012 數據庫應用教程(第3版)
- Shopify Application Development