Hi
I am not good in programing. I have a very basic question i.e. what is difference between these two statement written in java?
package org.apache.flink.streaming.examples.windowing;
import org.apache.flink.api.java.utils.ParameterTool;
If I use import, from where the file is imported? and if I use package where can I find the source file?
Infact, I found these two files in source code but when I change these files or even delete these, the program still compiles and run normally. How can I trace the exact location of these imports / packages?
Thank you.