I'm writing a class and I find it helpful to have functions I have yet to implement in the class I'm working in, so if I'm making a stack for ints I could write something like:
public class Stack
{
...
private void push(int n) {}
private int pop() {}
...
}
just as a reminder of functionality I'm supporting and organizational purposes. Is this somehow possible? I keep getting compile time errors when I try.
The functionality I'm looking for is similar to python's pass statement like:
def f():
pass