|
|
Browse by Tags
All Tags » Pointers
-
Iam wrighting a simpel drawing program for my programing class and when I move the pen wtih a very wide penwidth it can't make the trun smuthly it allways leaves a chunck out . I put in my method main if you need to look at it. oh I am usibg KPL 1.1 not phrogram .
Method Main()Maximize()
max_x= ...
-
As SebThon mentions, Java as well as C# and VB.NET and other modern languages have abandoned the use of pointers. The main reasons they have done that is to allow the runtime environment to manage memory for you. This avoids two of the most common bugs that developers produce: "memory leaks" caused when they don't release ...
|
|
|