In one algorithm question "Implement Queue by Linked List", the solution shows create the class Node first:
class Node {
public int val;
public Node next;
public Node(int _val) {
val = _val;
next = null;
}
}
May I ask the meaning of the leading underline of val = _val
?