In short: yes.
I'll use java as an example.
For a long while you could access off-heap memory by using
sun.misc.Unsafe
though this was frowned upon and accompanied by dire warnings that it would go away at some time.
One easier way is to use DirectByteBuffer
which uses off-heap memory.
Java is moving on with new, more endorsed ways of accessing off-heap memory, JEP-370 (https://openjdk.java.net/jeps/370) and JEP-383 (https://openjdk.java.net/jeps/383).
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…